Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bohdanmoroziuk/docker-mevn-sample

Example of Dockerizing MEVN Application
https://github.com/bohdanmoroziuk/docker-mevn-sample

docker docker-compose docker-mevn-sample docker-sample express mevn-stack mongodb mongoose nodejs typescript vue

Last synced: 14 days ago
JSON representation

Example of Dockerizing MEVN Application

Awesome Lists containing this project

README

        

# Docker MEVN Sample

> Example of Dockerizing MEVN Application

## Project structure

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

## Available scripts

Start the development container:

```bash
make start
```

Stop the development container:

```bash
make stop
```

The frontend is available at http://localhost.

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