Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 776 Bytes

README.md

File metadata and controls

45 lines (35 loc) · 776 Bytes

Docker Awesome Projects

PROJECT 1 : Todolist (React, MongoDB, NodeJS, Docker)

Todolist is React application with a NodeJS backend and a MongoDB database Project structure:

├── backend
│   ├── Dockerfile
│   ...
├── compose.yaml
├── frontend
│   ├── ...
│   └── Dockerfile
└── README.md

PROJECT 2 : Python/Flask application using a Redis database

Project structure:

.
├── Dockerfile
├── README.md
├── app.py
├── compose.yaml
└── requirements.txt

PROJECT 3 : Weather Application using React and Openweather API

Project structure:

.
├── public
├── src
├── Dockerfile
├── package-lock.json
├── package.json
└── README.md