Skip to content

bohdanmoroziuk/docker-mevn-sample

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.