rara/deploy/compose.yaml
toki fdc86c7ff4
Some checks are pending
ci / validate (push) Waiting to run
initial commit
2026-07-18 18:41:17 +09:00

19 lines
383 B
YAML

services:
postgres:
image: postgres:18
environment:
POSTGRES_DB: rara
POSTGRES_USER: rara
POSTGRES_PASSWORD: rara
ports:
- "5432:5432"
volumes:
- rara-postgres:/var/lib/postgresql
healthcheck:
test: ["CMD-SHELL", "pg_isready -U rara -d rara"]
interval: 2s
timeout: 3s
retries: 20
volumes:
rara-postgres: