Answer the question
In order to leave comments, you need to log in
Why did the server from Docker stop starting?
I'm running a container on my local machine with a Django project. Made migrations, created a superuser, went to the admin panel - everything is ok. After that, I added new models, added them to the admin panel and made migrations again and applied them:
docker-compose run --rm rest python manage.py makemigrations/migrate
docker-compose stop
docker-compose up -d
docker-compose build
Answer the question
In order to leave comments, you need to log in
well, in docker-compose.yml change the entrypoint line to this:
```
entrypoint: ["tail", "-f", "/dev/null"]
```
start docker-composer, enter the container, and manually start the server and see the errors there
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question