Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/bohdanmoroziuk/docker-mevn-sample
- Owner: bohdanmoroziuk
- Created: 2024-03-04T17:54:06.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-13T19:40:39.000Z (10 months ago)
- Last Synced: 2024-03-13T20:55:42.856Z (10 months ago)
- Topics: docker, docker-compose, docker-mevn-sample, docker-sample, express, mevn-stack, mongodb, mongoose, nodejs, typescript, vue
- Language: JavaScript
- Homepage:
- Size: 64.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.