mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-24 01:50:06 +00:00
13 lines
290 B
YAML
13 lines
290 B
YAML
version: "3"
|
|
|
|
services:
|
|
ge_postgres:
|
|
image: postgres:alpine
|
|
container_name: "ge_postgres"
|
|
environment:
|
|
POSTGRES_PASSWORD: datahub
|
|
volumes:
|
|
- ./setup/data:/mnt/data
|
|
- ./setup/setup.sql:/docker-entrypoint-initdb.d/setup.sql
|
|
ports:
|
|
- "5432:5432" |