-
Notifications
You must be signed in to change notification settings - Fork 55
/
docker-compose.pgupgrade.yml
62 lines (62 loc) · 1.54 KB
/
docker-compose.pgupgrade.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
---
services:
pg13-2.14.2:
image: timescale/timescaledb-ha:pg13.14-ts2.14.2-oss
container_name: pg13-2.14.2
environment:
POSTGRES_DB: seed
POSTGRES_USER: seed
POSTGRES_PASSWORD: password
volumes:
- ./share:/share
restart: "no"
pg13-2.11.0:
image: timescale/timescaledb-ha:pg13.11-ts2.11.0-all
container_name: pg13-2.11.0
environment:
POSTGRES_DB: seed
POSTGRES_USER: seed
POSTGRES_PASSWORD: password
volumes:
- ./share:/share
restart: "no"
pg13-2.11.2:
image: timescale/timescaledb-ha:pg13.12-ts2.11.2-all-oss
container_name: pg13-2.11.2
environment:
POSTGRES_DB: seed
POSTGRES_USER: seed
POSTGRES_PASSWORD: password
volumes:
- ./share:/share
restart: "no"
pg14-2.14.2:
image: timescale/timescaledb-ha:pg14.11-ts2.14.2-all-oss
container_name: pg14-2.14.2
environment:
POSTGRES_DB: seed
POSTGRES_USER: seed
POSTGRES_PASSWORD: password
volumes:
- ./share:/share
restart: "no"
pg14-2.11.0:
image: timescale/timescaledb-ha:pg14.8-ts2.11.0-oss
container_name: pg14-2.11.0
environment:
POSTGRES_DB: seed
POSTGRES_USER: seed
POSTGRES_PASSWORD: password
volumes:
- ./share:/share
restart: "no"
pg16-2.14.2:
image: timescale/timescaledb-ha:pg16.2-ts2.14.2-os
container_name: pg16-2.14.2
environment:
POSTGRES_DB: seed
POSTGRES_USER: seed
POSTGRES_PASSWORD: password
volumes:
- ./share:/share
restart: "no"