When starting the docker container using docker compose up the Django webserver is not starting, but only the database is starting.
Quick-fix: When rebuilding the container using docker compose up --build the webserver is starting as it should.
🚧 Possible Cause or Insight
We should check the docker-compose file line command: python orom_backend/manage.py runserver 0.0.0.0:8000.
🐛 Bug Summary
When starting the docker container using
docker compose up
the Django webserver is not starting, but only the database is starting. Quick-fix: When rebuilding the container usingdocker compose up --build
the webserver is starting as it should.🚧 Possible Cause or Insight
We should check the docker-compose file line
command: python orom_backend/manage.py runserver 0.0.0.0:8000
.