/docker-mevn-sample

Example of Dockerizing MEVN Application

Primary LanguageJavaScript

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.