-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
43 lines (38 loc) · 1009 Bytes
/
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
# docker-compose file for 'hello-oodt' example:
# o starts up a Workflow Manager and a File Manager container running on the same Docker host
# o configures the Workflow Manager and File Manager to execute the 'test-workflow' workflow
version: '3'
services:
# OODT file manager
oodt_filemgr:
image: acce/oodt-filemgr:2.0
container_name: filemgr
expose:
- "9000"
- "8983"
ports:
- "8983:8983"
- "9000:9000"
volumes:
- ./config:/usr/local/oodt/workflows
- jobs:/usr/local/oodt/jobs
- archive:/usr/local/oodt/archive
# OODT workflow manager
oodt_wmgr:
image: acce/oodt-wmgr:2.0
container_name: wmgr
expose:
- "9001"
ports:
- "9001"
environment:
- "FILEMGR_URL=http://filemgr:9000"
volumes:
- ./config/:/usr/local/oodt/workflows
- ./pges:/usr/local/oodt/pges/
- jobs:/usr/local/oodt/jobs
- archive:/usr/local/oodt/archive
# shared data volumes
volumes:
jobs:
archive: