-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
107 lines (100 loc) · 2.46 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
version: '3'
services:
postgres:
image: postgres:latest
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- "5432:5432"
volumes:
- pg_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD", "pg_isready", "-U", "postgres", "-d", "postgres"]
interval: 1s
timeout: 5s
retries: 5
api:
build:
context: .
dockerfile: Dockerfile
ports:
- "8080:8080"
environment:
PG_URL: postgres://postgres:postgres@postgres:5432/postgres?sslmode=disable
DB_VERSION: public_01_create_items_table
depends_on:
postgres:
condition: service_healthy
restart: true
profiles: ['dev']
api_v1:
image: pg-roll-demo:v1
build:
context: .
dockerfile: Dockerfile
args:
- API_URL=http://localhost:8080/api
ports:
- "8080:8080"
environment:
PG_URL: postgres://postgres:postgres@postgres:5432/postgres?sslmode=disable
DB_VERSION: public_01_create_items_table
depends_on:
postgres:
condition: service_healthy
restart: true
profiles: ['demo', 'v1']
api_v2:
image: pg-roll-demo:v2
build:
context: .
dockerfile: Dockerfile
args:
- API_URL=http://localhost:8081/api
ports:
- "8081:8080"
environment:
PG_URL: postgres://postgres:postgres@postgres:5432/postgres?sslmode=disable
DB_VERSION: public_02_add_assignee_column
depends_on:
postgres:
condition: service_healthy
restart: true
profiles: ['demo', 'v2']
api_v3:
image: pg-roll-demo:v3
build:
context: .
dockerfile: Dockerfile
args:
- API_URL=http://localhost:8080/api
ports:
- "8080:8080"
environment:
PG_URL: postgres://postgres:postgres@postgres:5432/postgres?sslmode=disable
DB_VERSION: public_01_create_items_table
depends_on:
postgres:
condition: service_healthy
restart: true
profiles: ['demo2', 'v3']
api_v4:
image: pg-roll-demo:v4
build:
context: .
dockerfile: Dockerfile
args:
- API_URL=http://localhost:8081/api
ports:
- "8081:8080"
environment:
PG_URL: postgres://postgres:postgres@postgres:5432/postgres?sslmode=disable
DB_VERSION: public_02_check_assignee
depends_on:
postgres:
condition: service_healthy
restart: true
profiles: ['demo2', 'v4']
volumes:
pg_data: