-
Notifications
You must be signed in to change notification settings - Fork 42
/
docker-compose.yml
47 lines (44 loc) · 1.39 KB
/
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
46
47
version: '3.7'
services:
web:
image: cguo/express-webpack-react-redux-typescript-boilerplate
build: # ignored when deploying a stack in swarm mode or kubernetes
context: .
args:
- PORT=${PORT}
ports:
- "${PORT}:${PORT}"
depends_on: # ignored when deploying a stack in swarm mode or kubernetes
- postgres
- redis
restart: always # ignored when deploying a stack in swarm mode or kubernetes
deploy: # ignored by docker-compose
replicas: 3
restart_policy:
condition: on-failure
postgres:
image: postgres:alpine
volumes:
- ./backend/sql/schema.sql:/docker-entrypoint-initdb.d/1-schema.sql
- ./backend/sql/data.sql:/docker-entrypoint-initdb.d/2-data.sql
environment:
- POSTGRES_DB=${POSTGRES_DB}
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
ports:
- "5432:5432"
restart: always # ignored when deploying a stack in swarm mode or kubernetes
deploy: # ignored by docker-compose
restart_policy:
condition: on-failure
redis:
image: redis:alpine
ports:
- "6379:6379"
volumes:
- ./backend/redis-data:/data
restart: always # ignored when deploying a stack in swarm mode or kubernetes
deploy: # ignored by docker-compose
restart_policy:
condition: on-failure
command: redis-server --appendonly yes