Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 580 Bytes

README.md

File metadata and controls

38 lines (28 loc) · 580 Bytes

Docker MEVN Sample

Example of Dockerizing MEVN Application

Project structure

.
├── frontend
│   ├── Dockerfile
│   └── ...
├── backend
│   ├── Dockerfile
│   └── ...
├── reverse-proxy
│   ├── Dockerfile
│   └── ...
├── compose.yaml
└── ...

Available scripts

Start the development container:

make start

Stop the development container:

make stop

The frontend is available at http://localhost.

The backend is available at http://localhost/api/users.