-
Notifications
You must be signed in to change notification settings - Fork 14
/
docker-compose-postgres.yml
51 lines (46 loc) · 1.24 KB
/
docker-compose-postgres.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
---
version: '3.3'
services:
postgres:
image: postgres
restart: always
ports:
- "5432:5432"
environment:
- POSTGRES_PASSWORD=admin
destination-data-gen:
image: beetravels/data-gen-destination:13de064f6409e9aec5db244a6a9b4e65b7e11623
restart: on-failure
environment:
- PG_USER=postgres
- PG_HOST=postgres
- PG_PASSWORD=admin
- GENERATE_DATA=false
- DATABASE=${DATABASE}
hotel-data-gen:
image: beetravels/data-gen-hotel:13de064f6409e9aec5db244a6a9b4e65b7e11623
restart: on-failure
environment:
- PG_USER=postgres
- PG_HOST=postgres
- PG_PASSWORD=admin
- GENERATE_DATA=false
- DATABASE=${DATABASE}
cars-data-gen:
image: beetravels/data-gen-carrental:13de064f6409e9aec5db244a6a9b4e65b7e11623
restart: on-failure
environment:
- PG_USER=postgres
- PG_HOST=postgres
- PG_PASSWORD=admin
- GENERATE_DATA=false
- DATABASE=${DATABASE}
flights-data-gen:
image: beetravels/data-gen-airports:13de064f6409e9aec5db244a6a9b4e65b7e11623
restart: on-failure
environment:
- PG_USER=postgres
- PG_HOST=postgres
- PG_PASSWORD=admin
- GENERATE_DATA=false
- DATABASE=${DATABASE}