datahub/docker/docker-compose.react.yml
John Joyce 1aede64465
bug(docker react): Fix react docker image build (#2118)
Co-authored-by: John Joyce <john@acryl.io>
2021-02-17 23:11:32 -08:00

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