Files
FamilyHUB/docker-compose.yml
T
2026-02-18 23:19:47 +03:00

16 lines
316 B
YAML

version: '3.9'
services:
db:
image: postgres:16
container_name: postgres
restart: always
environment:
POSTGRES_USER: familyUser
POSTGRES_PASSWORD: familyPass
POSTGRES_DB: familyHubDB
ports:
- "5432:5432"
volumes:
- ./volumes/postgres:/var/lib/postgresql/data