Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/danielblagy/employees


https://github.com/danielblagy/employees

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# employees

A test application to familiarize yourself with docker.

### Create images and start api and postgres containers
```
docker compose up --build
```

### Stops containers and removes containers, networks, volumes, and images created by `up`
```
docker compose down
```

## Previous version where only one service was being implemented

### Create image
```
docker build -t employees-app .
```

### Run container from created image
```
docker run -p 5000:5000 -tid employees-app
```