-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
55 lines (55 loc) · 1.15 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
version: '2'
services:
db:
build:
context: simcity-couchdb
ports:
- "127.0.0.1:5784:5984"
- "127.0.0.1:5884:5984"
environment:
COUCHDB_USER: simcityadmin
COUCHDB_PASSWORD: simcity
webdav:
build:
context: simcity-webdav
ports:
- "127.0.0.1:8080:80"
slurm:
build:
context: simcity-slurm
ports:
- "127.0.0.1:10022:22"
links:
- db:taskdb
- db:jobdb
- webdav
simcity_webservice:
build:
context: simcity-webservice
ports:
- "127.0.0.1:9098:9090"
- "127.0.0.1:30022:22"
links:
- db:taskdb
- db:jobdb
- webdav
- slurm
volumes:
- ./simcity-webservice/simulations/:/home/simcity/sim-city-webservice/simulations/
- ./simcity-webservice/resources/:/home/simcity/sim-city-webservice/resources/
commonsense:
build:
context: simcity-commonsense
ports:
- "127.0.0.1:3003:3003"
- "127.0.0.1:20022:22"
nginx:
build:
context: simcity-nginx
ports:
- "127.0.0.1:8008:8008"
links:
- db:couchdb
- webdav
- simcity_webservice
- commonsense