mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-03 15:17:58 +00:00
14 lines
338 B
YAML
14 lines
338 B
YAML
version: '3.8'
|
|
services:
|
|
testpostgres:
|
|
container_name: "testpostgres"
|
|
hostname: postgres
|
|
image: postgres:15.2
|
|
environment:
|
|
POSTGRES_USER: "postgres"
|
|
POSTGRES_PASSWORD: "example"
|
|
ports:
|
|
- '5432:5432'
|
|
volumes:
|
|
- ./setup:/setup
|
|
- ./setup/setup.sql:/docker-entrypoint-initdb.d/setup.sql |