shoutdotdev/dev-services/docker-compose.yaml

14 lines
282 B
YAML
Raw Normal View History

2025-02-03 13:41:44 -08:00
name: shoutdotdev
2024-11-01 00:07:33 -07:00
services:
pg:
image: postgres:17
restart: always
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: callous
ports:
- "127.0.0.1:5447:5432"
volumes:
- "./docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d:ro"