-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
31 lines (31 loc) · 1.16 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
services:
harvester-worker-landsat:
image: eoepca/registration-harvester:latest
container_name: registration-harvester-landsat
ports:
- "8081:8080"
environment:
- CONFIG_FILE_PATH=/worker/config/harvester.yaml
- FLOWABLE_USER=${FLOWABLE_USER}
- FLOWABLE_PASSWORD=${FLOWABLE_PASSWORD}
- M2M_USER=${M2M_USER}
- M2M_PASSWORD=${M2M_PASSWORD}
volumes:
- ./config-landsat.yaml:/worker/config/harvester.yaml:ro
- /eodata:/eodata:rw
restart: always
harvester-worker-sentinel:
image: eoepca/registration-harvester:latest
container_name: registration-harvester-sentinel
ports:
- "8082:8080"
environment:
- CONFIG_FILE_PATH=/worker/config/harvester.yaml
- FLOWABLE_USER=${FLOWABLE_USER}
- FLOWABLE_PASSWORD=${FLOWABLE_PASSWORD}
- CDSE_USER=${CDSE_USER}
- CDSE_PASSWORD=${CDSE_PASSWORD}
volumes:
- ./config-sentinel.yaml:/worker/config/harvester.yaml:ro
- /eodata:/eodata:rw
restart: always