The next command will download the latest mongodb docker image and will create a container with the given port, name and volumes to persist db data.
docker run -d -p 9000:27017 --name example-mongo -v mongo-data:/data/db mongo:latest
First we have to create a directory which will hold you main code.
Inside that folder you will have to create your virtual environment. Once your venv is created you will have to create
django project with the following command: django-admin startproject project-name
asgi.py and wsgi.py are config files for deployment.