2021-02-10 16:10:08 -08:00
|
|
|
# Introduces datahub-frontend-react container to serve the React UI on localhost:9002/
|
|
|
|
---
|
|
|
|
version: '3.8'
|
|
|
|
services:
|
|
|
|
datahub-frontend-react:
|
|
|
|
build:
|
|
|
|
context: ../
|
|
|
|
dockerfile: docker/datahub-frontend/Dockerfile
|
|
|
|
args:
|
2021-02-17 23:11:32 -08:00
|
|
|
SERVER_PORT: 9002
|
2021-02-10 16:10:08 -08:00
|
|
|
ENABLE_REACT: "true"
|
2021-02-15 15:51:20 -08:00
|
|
|
image: linkedin/datahub-frontend:react-${DATAHUB_VERSION:-latest}
|
2021-02-10 16:10:08 -08:00
|
|
|
env_file: datahub-frontend/env/docker.env
|
|
|
|
hostname: datahub-frontend-react
|
|
|
|
container_name: datahub-frontend-react
|
|
|
|
ports:
|
|
|
|
- "9002:9002"
|
|
|
|
depends_on:
|
|
|
|
- datahub-gms
|