Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/alan-toledo/MEAN-Stack

MEAN: MongoDB, Express, Angular, Node.js
https://github.com/alan-toledo/MEAN-Stack

angular8 docker-compose express-js mean-stack mongodb nodejs

Last synced: 3 months ago
JSON representation

MEAN: MongoDB, Express, Angular, Node.js

Awesome Lists containing this project

README

        

# MEAN-Stack

This is a basic MEAN (MongoDB, Express, Angular, Node.js) Stack CRUD. For running the application use docker-compose.

## Build or rebuild services
```bash
docker-compose -f docker-compose.yml build
```

## Create and start containers
```bash
docker-compose -f docker-compose.yml up
```

## Stop and remove containers
```bash
docker-compose -f docker-compose.yml down
```

## Clean: Delete all containers
```bash
docker rm -f $(docker ps -a -q)
```

## Clean: Delete all images
```bash
docker rmi -f $(docker images -aq)
```

## Clean: Delete all volumes
```bash
docker volume rm $(docker volume ls -q)
```

## Example
![alt text](Users.png)