-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
97 lines (90 loc) · 2.28 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
version: '3.7'
services:
rb-postgres:
image: postgres:13
container_name: rb-postgres
environment:
POSTGRES_DB: reqbaz
POSTGRES_USER: reqbaz
POSTGRES_PASSWORD: password
ports:
- 5434:5432
volumes:
- ./postgres-data:/var/lib/postgresql/data
init-rb-database:
image: ghcr.io/rwth-acis/requirementsbazaar-init:develop
environment:
HOST: rb-postgres
USERNAME: reqbaz
PASSWORD: reqbaz
depends_on:
- rb-postgres
reqbaz:
image: ghcr.io/rwth-acis/requirementsbazaar:develop
restart: unless-stopped
environment:
LAS2PEER_PORT: "9011"
HTTP_PORT: "8080"
POSTGRES_HOST: rb-postgres
POSTGRES_USER: reqbaz
POSTGRES_PASSWORD: reqbaz
BASE_URL: http://localhost:8080/bazaar/
ACTIVITY_TRACKER_ORIGIN: http://localhost:8080/bazaar/
ports:
- 8080:8080
- 9011:9011/udp
- 9011:9011/tcp
#volumes:
# - ./c-node-storage:/src/node-storage
depends_on:
- init-rb-database
file_service:
image: registry.tech4comp.dbis.rwth-aachen.de/rwthacis/las2peer-file-service:develop
restart: unless-stopped
environment:
LAS2PEER_PORT: "9013"
HTTP_PORT: "8082"
BOOTSTRAP: reqbaz:9011
ports:
- 8082:8082
- 9013:9013/udp
- 9013:9013/tcp
depends_on:
- reqbaz
at-postgres:
image: postgres:13
container_name: at-postgres
environment:
POSTGRES_DB: reqbaztrack
POSTGRES_USER: reqbaztrack
POSTGRES_PASSWORD: password
ports:
- 5436:5432
volumes:
- ./postgres-data:/var/lib/postgresql/data
init-at-database:
image: ghcr.io/rwth-acis/activitytracker-init:develop
environment:
HOST: at-postgres
USERNAME: reqbaztrack
PASSWORD: reqbaztrack
depends_on:
- rb-postgres
activity_tracker:
image: ghcr.io/rwth-acis/activitytracker:develop
restart: unless-stopped
environment:
LAS2PEER_PORT: "9012"
HTTP_PORT: "8081"
POSTGRES_HOST: at-postgres
POSTGRES_USER: reqbaztrack
POSTGRES_PASSWORD: reqbaztrack
BOOTSTRAP: reqbaz:9011
ports:
- 8081:8081
- 9012:9012/udp
- 9012:9012/tcp
#volumes:
# - ./c-node-storage:/src/node-storage
depends_on:
- init-at-database