Mentions légales du service

Skip to content
  • BAIRE Anthony's avatar
    fix django's container termination · cb8ec128
    BAIRE Anthony authored
    - use `CMD ["run-allgo"]` so that the run-allgo command is executed
      directly (whereas `CMD run-allgo` launches it inside a shell
      which would receive the termination signal in place of django)
    
    - use `SIGINT` instead of `SIGTERM` for stopping the container
      (because the django server ignores SIGTERM)
    
    With these changes, stopping or restarting the container
    (eg: `fig restart dev-django`) will be immediate
    cb8ec128