Files
toir-light/docker-compose.yml
2026-04-03 21:45:13 -07:00

17 lines
336 B
YAML

services:
postgres:
image: postgres:16
container_name: toir-light-postgres
restart: unless-stopped
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: toir
ports:
- '5432:5432'
volumes:
- postgres-data:/var/lib/postgresql/data
volumes:
postgres-data: