Files
Oxicloud/docker-compose-migration.yml
T
2025-03-24 16:47:42 +01:00

22 lines
489 B
YAML

version: '3.8'
services:
postgres:
image: postgres:15-alpine
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
- ./fix-userrole.sql:/docker-entrypoint-initdb.d/fix-userrole.sql
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 5
volumes:
postgres_data: