-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
75 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# | ||
# WARNING: | ||
# This is development version of Docker compose file, it can build the images | ||
# from local files instead of using the published version. | ||
# | ||
# 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} | ||
build: | ||
context: . | ||
dockerfile: storage/Dockerfile | ||
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} | ||
build: | ||
context: . | ||
dockerfile: frontend/Dockerfile | ||
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} | ||
build: | ||
context: . | ||
dockerfile: executor-monitor/Dockerfile | ||
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} | ||
build: | ||
context: . | ||
dockerfile: executor/Dockerfile | ||
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters