My web project from the University of Kurdistan: Internet Engineering. 📋 Simple to-do list where you can add new tasks, or delete them if they are no longer important.
Check out the post.
Development
Uses the default Django development server.
Build the images and run the containers:
$ docker-compose up -d --build
Test it out at http://localhost:8800. The “app” folder is mounted into the container and your code changes apply automatically.
Production
Uses gunicorn + nginx.
Build the images and run the containers:
$ docker-compose -f docker-compose.prod.yml up -d --build
Test it out at http://localhost:1337. No mounted folders. To apply changes, the image must be re-built.
GPLv3