I am learning how to develop a Django app in docker using this official tutorial: https://docs.docker.com/compose/django/
I successfully completed the tutorial and
docker-compose run web django-admin.py startproject composeexample .creates an image
docker-compose uplaunches the application
The question arises:
I often use python manage.py shellto start Django in shell mode, but I do not know how to do this with docker.
source
share