blob: b5f4ebcd24cde9edd1ba089fc2a14fb6a0d12f51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
version: '3'
services:
rhsolutions-api:
build: ../RhSolutions.Api
container_name: rhsolutions-api
ports:
- 5000:5000
environment:
- DB_HOST=rhsolutions-db
- DB_PORT=5432
- DB_DATABASE=rhsolutions
- DB_USER=chebser
- DB_PASSWORD=Rehau-987
depends_on:
- rhsolutions-db
restart: unless-stopped
rhsolutions-db:
container_name: rhsolutions-db
build: ./database
environment:
- POSTGRES_USER=chebser
- POSTGRES_PASSWORD=Rehau-987
- POSTGRES_DB=rhsolutions
restart: unless-stopped
networks:
default:
name: rhsolutions
|