mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-24 18:10:11 +00:00
20 lines
555 B
YAML
20 lines
555 B
YAML
# 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:
|
|
SERVER_PORT: 9002
|
|
ENABLE_REACT: "true"
|
|
image: linkedin/datahub-frontend:react-${DATAHUB_VERSION:-latest}
|
|
env_file: datahub-frontend/env/docker.env
|
|
hostname: datahub-frontend-react
|
|
container_name: datahub-frontend-react
|
|
ports:
|
|
- "9002:9002"
|
|
depends_on:
|
|
- datahub-gms
|