mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-27 19:39:52 +00:00

* feat(gms): add postgres & mariadb supports to GMS Also add corresponding docker-compose files * Update README.md
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 |