-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
86 lines (78 loc) · 1.74 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
## WIP: This docker compose does not have any impact on the builder yet.
version: '3'
services:
postgres10:
image: postgres:10
container_name: postgres10
ports:
- 15010:5432
networks:
- pgqueries
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
postgres11:
image: postgres:11
container_name: postgres11
ports:
- 15011:5432
networks:
- pgqueries
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
postgres12:
image: postgres:12
container_name: postgres12
ports:
- 15012:5432
networks:
- pgqueries
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
postgres13:
image: postgres:13
container_name: postgres13
ports:
- 15013:5432
networks:
- pgqueries
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
postgres14:
image: postgres:14
container_name: postgres14
ports:
- 15014:5432
networks:
- pgqueries
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
postgres15:
image: postgres:15
container_name: postgres15
ports:
- 15015:5432
networks:
- pgqueries
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
artifact_builder:
build:
context: artifact_builder/
container_name: artifact_builder
## TODO: once testing queries is done in artifacts_builder,
## we'll proceed to make this dependant of the postgresN
# depends_on:
# - postgres10
# - postgres11
# - postgres12
# - postgres13
# - postgres14
# - postgres15
networks:
pgqueries: