2020-08-06 16:38:53 -07:00
|
|
|
# Default overrides for running local development.
|
|
|
|
|
|
|
|
# Images here are made as "development" images by following the general pattern of defining a multistage build with
|
|
|
|
# separate prod/dev steps; using APP_ENV to specify which to use. The dev steps should avoid building and instead assume
|
|
|
|
# that binaries and scripts will be mounted to the image, as also set up by this file. Also see see this excellent
|
|
|
|
# thread https://github.com/docker/cli/issues/1134.
|
|
|
|
|
|
|
|
# To make a JVM app debuggable via IntelliJ, go to its env file and add JVM debug flags, and then add the JVM debug
|
|
|
|
# port to this file.
|
|
|
|
---
|
2023-05-08 23:42:15 +02:00
|
|
|
version: '3.9'
|
2020-08-06 16:38:53 -07:00
|
|
|
services:
|
2023-05-08 23:42:15 +02:00
|
|
|
datahub-frontend-react:
|
|
|
|
image: linkedin/datahub-frontend-react:debug
|
|
|
|
ports:
|
|
|
|
- ${DATAHUB_MAPPED_FRONTEND_DEBUG_PORT:-5002}:5002
|
|
|
|
- ${DATAHUB_MAPPED_FRONTEND_PORT:-9002}:9002
|
2021-02-24 16:00:16 -08:00
|
|
|
build:
|
2023-05-08 23:42:15 +02:00
|
|
|
context: ../
|
|
|
|
dockerfile: docker/datahub-frontend/Dockerfile
|
2021-02-24 16:00:16 -08:00
|
|
|
args:
|
|
|
|
APP_ENV: dev
|
2023-05-08 23:42:15 +02:00
|
|
|
environment:
|
|
|
|
- JAVA_TOOL_OPTIONS=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5002
|
|
|
|
- DATAHUB_ANALYTICS_ENABLED=${DATAHUB_ANALYTICS_ENABLED:-true}
|
2021-02-24 16:00:16 -08:00
|
|
|
volumes:
|
2023-05-08 23:42:15 +02:00
|
|
|
- ../datahub-frontend/build/stage/playBinary:/datahub-frontend
|
2020-08-06 16:38:53 -07:00
|
|
|
datahub-gms:
|
|
|
|
image: linkedin/datahub-gms:debug
|
2023-05-08 23:42:15 +02:00
|
|
|
ports:
|
|
|
|
- ${DATAHUB_MAPPED_GMS_DEBUG_PORT:-5001}:5001
|
|
|
|
- ${DATAHUB_MAPPED_GMS_PORT:-8080}:8080
|
2020-08-06 16:38:53 -07:00
|
|
|
build:
|
|
|
|
context: datahub-gms
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
args:
|
|
|
|
APP_ENV: dev
|
2021-12-08 10:50:08 +09:00
|
|
|
environment:
|
2023-05-08 23:42:15 +02:00
|
|
|
- SKIP_ELASTICSEARCH_CHECK=false
|
|
|
|
- DATAHUB_SERVER_TYPE=${DATAHUB_SERVER_TYPE:-dev}
|
|
|
|
- DATAHUB_TELEMETRY_ENABLED=${DATAHUB_TELEMETRY_ENABLED:-true}
|
|
|
|
- METADATA_SERVICE_AUTH_ENABLED=false
|
|
|
|
- JAVA_TOOL_OPTIONS=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5001
|
|
|
|
- BOOTSTRAP_SYSTEM_UPDATE_WAIT_FOR_SYSTEM_UPDATE=false
|
|
|
|
- SEARCH_SERVICE_ENABLE_CACHE=false
|
|
|
|
- LINEAGE_SEARCH_CACHE_ENABLED=false
|
2020-08-06 16:38:53 -07:00
|
|
|
volumes:
|
2023-05-08 23:42:15 +02:00
|
|
|
- ./datahub-gms/start.sh:/datahub/datahub-gms/scripts/start.sh
|
|
|
|
- ./datahub-gms/jetty.xml:/datahub/datahub-gms/scripts/jetty.xml
|
|
|
|
- ./monitoring/client-prometheus-config.yaml:/datahub/datahub-gms/scripts/prometheus-config.yaml
|
|
|
|
- ../metadata-models/src/main/resources/:/datahub/datahub-gms/resources
|
|
|
|
- ../metadata-service/war/build/libs/:/datahub/datahub-gms/bin
|
|
|
|
- ${HOME}/.datahub/plugins:/etc/datahub/plugins
|
|
|
|
datahub-upgrade:
|
|
|
|
image: acryldata/datahub-upgrade:debug
|
2021-03-19 18:55:04 -04:00
|
|
|
build:
|
2023-05-08 23:42:15 +02:00
|
|
|
context: datahub-upgrade
|
|
|
|
dockerfile: Dockerfile
|
2021-03-19 18:55:04 -04:00
|
|
|
args:
|
|
|
|
APP_ENV: dev
|
2023-02-16 10:41:42 -06:00
|
|
|
environment:
|
2023-05-08 23:42:15 +02:00
|
|
|
- SKIP_ELASTICSEARCH_CHECK=false
|
|
|
|
- DATAHUB_SERVER_TYPE=${DATAHUB_SERVER_TYPE:-dev}
|
|
|
|
- DATAHUB_TELEMETRY_ENABLED=${DATAHUB_TELEMETRY_ENABLED:-true}
|
2021-03-19 18:55:04 -04:00
|
|
|
volumes:
|
2023-05-08 23:42:15 +02:00
|
|
|
- ../datahub-upgrade/build/libs/:/datahub/datahub-upgrade/bin/
|
|
|
|
- ../metadata-models/src/main/resources/:/datahub/datahub-gms/resources
|
|
|
|
- ${HOME}/.datahub/plugins:/etc/datahub/plugins
|
|
|
|
# Pre-creates the search indices using local mapping/settings.json
|
|
|
|
elasticsearch-setup:
|
|
|
|
image: linkedin/datahub-elasticsearch-setup:debug
|
2023-01-31 18:44:37 -06:00
|
|
|
build:
|
2023-05-08 23:42:15 +02:00
|
|
|
context: elasticsearch-setup
|
2023-01-31 18:44:37 -06:00
|
|
|
dockerfile: Dockerfile
|
|
|
|
args:
|
|
|
|
APP_ENV: dev
|
2023-05-08 23:42:15 +02:00
|
|
|
depends_on:
|
|
|
|
elasticsearch:
|
|
|
|
condition: service_healthy
|
2023-01-31 18:44:37 -06:00
|
|
|
volumes:
|
2023-05-08 23:42:15 +02:00
|
|
|
- ./elasticsearch-setup/create-indices.sh:/create-indices.sh
|
|
|
|
- ../metadata-service/restli-servlet-impl/src/main/resources/index/:/index
|