mirror of
https://github.com/datahub-project/datahub.git
synced 2025-09-14 19:51:39 +00:00
30 lines
879 B
YAML
30 lines
879 B
YAML
![]() |
---
|
||
|
version: '3.5'
|
||
|
services:
|
||
|
datahub-gms:
|
||
|
image: linkedin/datahub-gms:${DATAHUB_VERSION:-latest}
|
||
|
build:
|
||
|
context: ../../
|
||
|
dockerfile: docker/gms/Dockerfile
|
||
|
hostname: datahub-gms
|
||
|
container_name: datahub-gms
|
||
|
ports:
|
||
|
- "8080:8080"
|
||
|
environment:
|
||
|
- EBEAN_DATASOURCE_USERNAME=datahub
|
||
|
- EBEAN_DATASOURCE_PASSWORD=datahub
|
||
|
- EBEAN_DATASOURCE_HOST=postgres:5432
|
||
|
- EBEAN_DATASOURCE_URL=jdbc:postgresql://postgres:5432/datahub
|
||
|
- EBEAN_DATASOURCE_DRIVER=org.postgresql.Driver
|
||
|
- KAFKA_BOOTSTRAP_SERVER=broker:29092
|
||
|
- KAFKA_SCHEMAREGISTRY_URL=http://schema-registry:8081
|
||
|
- ELASTICSEARCH_HOST=elasticsearch
|
||
|
- ELASTICSEARCH_PORT=9200
|
||
|
- NEO4J_HOST=neo4j:7474
|
||
|
- NEO4J_URI=bolt://neo4j
|
||
|
- NEO4J_USERNAME=neo4j
|
||
|
- NEO4J_PASSWORD=datahub
|
||
|
|
||
|
networks:
|
||
|
default:
|
||
|
name: datahub_network
|