-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdocker-compose-stage.yml
More file actions
72 lines (65 loc) · 1.46 KB
/
docker-compose-stage.yml
File metadata and controls
72 lines (65 loc) · 1.46 KB
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
version: '3'
services:
appclient:
image: phylogenyexplorer/client:0.0.2
environment:
- DB_HOSTS=mongo
- PHYLEX_PUBLIC_API_HOSTNAME=demo-tree.phylogenyexplorerproject.com:5500
- PHYLEX_ADMIN_API_HOSTNAME=demo-user.phylogenyexplorerproject.com:5000
- PHYLEX_WEBSITE_HOSTNAME=demo.phylogenyexplorerproject.com:3000
ports:
- "3000:3000"
depends_on:
- mongoseed
volumes:
- /etc/letsencrypt:/etc/letsencrypt
appuser:
image: phylogenyexplorer/user-api:0.0.2
environment:
- DB_HOSTS=mongo
ports:
- "5000:5000"
depends_on:
- mongoseed
volumes:
- /etc/letsencrypt:/etc/letsencrypt
apptree:
image: phylogenyexplorer/tree-api:0.0.2
environment:
- DB_HOSTS=mongo
ports:
- "5500:5500"
depends_on:
- mongoseed
volumes:
- /etc/letsencrypt:/etc/letsencrypt
appdaemon:
image: phylogenyexplorer/daemon:0.0.2
environment:
- DB_HOSTS=mongo
depends_on:
- mongoseed
volumes:
- /etc/letsencrypt:/etc/letsencrypt
mongo:
image: mongo
ports:
- "27017:27017"
mongoseed:
image: phylogenyexplorer/mongoseed
depends_on:
- mongo
nginx:
image: phylogenyexplorer/nginx-demo:0.0.3
ports:
- "80:80"
- "443:443"
restart: always
depends_on:
- appclient
- appuser
- apptree
volumes:
- /etc/letsencrypt:/etc/letsencrypt
links:
- app