mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-19 15:42:09 +00:00
19 lines
364 B
YAML
19 lines
364 B
YAML
![]() |
---
|
||
|
version: '3.5'
|
||
|
services:
|
||
|
postgres:
|
||
|
container_name: postgres
|
||
|
hostname: postgres
|
||
|
image: postgres:12.3
|
||
|
restart: always
|
||
|
environment:
|
||
|
POSTGRES_USER: datahub
|
||
|
POSTGRES_PASSWORD: datahub
|
||
|
ports:
|
||
|
- '5432:5432'
|
||
|
volumes:
|
||
|
- ./init.sql:/docker-entrypoint-initdb.d/init.sql
|
||
|
|
||
|
networks:
|
||
|
default:
|
||
|
name: datahub_network
|