Mentions légales du service

Skip to content

fix django's container termination

BAIRE Anthony requested to merge fix-django-container-term into django
  • 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

Merge request reports