Example of Dockerizing MEVN Application
.
├── frontend
│ ├── Dockerfile
│ └── ...
├── backend
│ ├── Dockerfile
│ └── ...
├── reverse-proxy
│ ├── Dockerfile
│ └── ...
├── compose.yaml
└── ...Start the development container:
make startStop the development container:
make stopThe frontend is available at http://localhost.
The backend is available at http://localhost/api/users.