mirror of
https://github.com/datahub-project/datahub.git
synced 2025-09-14 03:31:40 +00:00

* build(docker): refactor docker build scripts - add "build" option to docker-compose files to simplify rebuilding of images - create "start.sh" script so it's easier to override "command" in the quickstart's docker-compose file - use dockerize to wait for requisite services to start up - add a dedicated Dockerfile for kafka-setup This fixes https://github.com/linkedin/datahub/issues/1549 & https://github.com/linkedin/datahub/issues/1550
22 lines
533 B
YAML
22 lines
533 B
YAML
---
|
|
version: '3.5'
|
|
services:
|
|
datahub-frontend:
|
|
image: linkedin/datahub-frontend:${DATAHUB_VERSION:-latest}
|
|
build:
|
|
context: ../../
|
|
dockerfile: docker/frontend/Dockerfile
|
|
hostname: datahub-frontend
|
|
container_name: datahub-frontend
|
|
ports:
|
|
- "9001:9001"
|
|
environment:
|
|
- DATAHUB_GMS_HOST=datahub-gms
|
|
- DATAHUB_GMS_PORT=8080
|
|
- DATAHUB_SECRET=YouKnowNothing
|
|
- DATAHUB_APP_VERSION=1.0
|
|
- DATAHUB_PLAY_MEM_BUFFER_SIZE=10MB
|
|
|
|
networks:
|
|
default:
|
|
name: datahub_network |