-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
45 lines (45 loc) · 927 Bytes
/
docker-compose.yml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
version: '3'
services:
app-service:
stdin_open: true
build:
context: ./app-service
dockerfile: Dockerfile
environment:
CHOKIDAR_USEPOLLING: 'true'
ports:
- '3000:3000'
volumes:
- /app/node_modules
- './app-service:/app'
restart: on-failure
postgres:
image: 'postgres:latest'
shm_size: 1g
environment:
- POSTGRES_PASSWORD=postgres_password
ports:
- '5432:5432'
volumes:
- 'db:/var/lib/postgresql/data'
api-service:
build:
context: ./api-service
dockerfile: Dockerfile
ports:
- '5000:5000'
restart: always
volumes:
- /app/node_modules
- './api-service:/app'
depends_on:
- postgres
environment:
- PORT=5000
- PGUSER=postgres
- PGHOST=postgres
- PGDATABASE=postgres
- PGPASSWORD=postgres_password
- PGPORT=5432
volumes:
db: null