-
Notifications
You must be signed in to change notification settings - Fork 30
/
docker-compose.yml
52 lines (52 loc) · 1.53 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
#
# Environment variables:
# * LP_ETL_DOMAIN - URL prefix, for example http://localhost:9080
# * LP_ETL_PORT - port number to expose LP-ETL on
# * LP_VERSION - 'main' by default or 'develop'
#
services:
storage:
image: ghcr.io/linkedpipes/etl-storage:${LP_VERSION-main}
volumes:
- data-storage:/data/lp-etl/storage
- configuration:/data/lp-etl/configuration
- data-logs:/data/lp-etl/logs
environment:
- LP_ETL_DOMAIN
restart: always
frontend:
image: ghcr.io/linkedpipes/etl-frontend:${LP_VERSION-main}
volumes:
- configuration:/data/lp-etl/configuration
- data-logs:/data/lp-etl/logs
ports:
- ${LP_ETL_PORT-8080}:8080
environment:
- LP_ETL_DOMAIN
restart: always
executor-monitor:
image: ghcr.io/linkedpipes/etl-executor-monitor:${LP_VERSION-main}
volumes:
- data-execution:/data/lp-etl/executor
- data-logs:/data/lp-etl/logs
- configuration:/data/lp-etl/configuration
environment:
- LP_ETL_DOMAIN
restart: always
executor:
image: ghcr.io/linkedpipes/etl-executor:${LP_VERSION-main}
volumes:
- data-execution:/data/lp-etl/executor
- data-logs:/data/lp-etl/logs
- configuration:/data/lp-etl/configuration
environment:
- LP_ETL_DOMAIN
restart: always
volumes:
data-logs:
data-execution:
data-storage:
configuration:
# When binding configuration it must contain file configuration.properties.
# Do not forget that LP_ETL_DOMAIN overwrites domain.uri in the
# configuration file.