This repository was archived by the owner on Feb 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
85 lines (72 loc) · 1.65 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
# Docker Compose file for the PDC's Hub Stack
#
#
# Used for collecting aggregate data queries.
#
# Use secondary .YML files for development and add -f YOUR.YML at execution.
auth:
container_name: auth
hostname: auth
image: pdcbc/auth:${TAG}
restart: always
log_driver: "syslog"
volumes:
- /pdc/data/config/dacs/:/etc/dacs/:rw
composer:
container_name: composer
hostname: composer
image: pdcbc/composer:${TAG}
restart: always
log_driver: "syslog"
links:
- hubdb:hubdb
ports:
- "2774:22"
- "3002:3002"
volumes:
- /pdc/data/config/authorized_keys/:/home/autossh/.ssh/:rw
- /pdc/data/config/composer_keys/:/etc/ssh/:rw
- /pdc/data/config/ep_known_hosts/:/root/.ssh/:rw
- /pdc/data/config/scheduled_jobs/:/app/util/job_params/:rw
dclapi:
container_name: dclapi
hostname: dclapi
image: pdcbc/dclapi:${TAG}
restart: always
log_driver: "syslog"
hapi:
container_name: hapi
hostname: hapi
image: pdcbc/hapi:${TAG}
restart: always
log_driver: "syslog"
links:
- auth:auth
- hubdb:hubdb
- dclapi:dclapi
volumes:
- /pdc/data/config/groups/:/volumes/groups/:rw
- /pdc/data/private/reports/:/volumes/reports/:rw
hubdb:
container_name: hubdb
hostname: hubdb
image: pdcbc/hubdb:${TAG}
restart: always
log_driver: "syslog"
volumes:
- /pdc/data/private/mongo_live/:/data/db/:rw
- /pdc/data/private/mongo_dump/:/data/dump/:rw
viz:
container_name: viz
hostname: viz
image: pdcbc/viz:${TAG}
restart: always
log_driver: "syslog"
links:
- auth:auth
- hapi:hapi
ports:
- "443:3004"
- "80:3008"
volumes:
- /pdc/data/config/cert/:/app/cert/:ro