Web application for simple project management wirtten in Django.
First create a shared docker volume to be shared between both web and nginx containers, so nginx has access to the staticfiles.
docker volume create --name DataVolume1then, bring prjectmgmt docker containers up first
sudo docker-compose up -d --buildthen, go to nginx dirctory and execute the same
sudo docker-compose up -d --buildaccess the web container and execute migartions and user creation
docker exec -it projectmgmt_web_1 /bin/bash
python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuseraccess the application on http://localhost:1337