You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
312 B
YAML

services:
postgres:
image: postgres:16
container_name: pulleydb
environment:
POSTGRES_USER: pulley
POSTGRES_PASSWORD: passwd
POSTGRES_DB: pulley
ports:
- "5434:5432" # Host:Container
volumes:
- ./.pg_data:/var/lib/postgresql/data
user: "${UID}:${GID}"