Files
portabase/docker-compose.yml
T

22 lines
503 B
YAML
Raw Normal View History

2024-11-03 11:49:04 +01:00
name: portabase-dev
services:
2025-05-16 15:54:17 +02:00
db:
image: postgres:16-alpine
ports:
2025-07-31 17:32:03 +02:00
- "5433:5432"
2025-05-16 15:54:17 +02:00
volumes:
- postgres-data:/var/lib/postgresql/data
environment:
- POSTGRES_DB=devdb
- POSTGRES_USER=devuser
- POSTGRES_PASSWORD=changeme
healthcheck:
test: ["CMD-SHELL", "pg_isready -U devuser -d devdb"]
interval: 10s
timeout: 5s
retries: 5
2024-11-17 21:01:05 +01:00
2024-11-03 11:49:04 +01:00
volumes:
2025-05-16 15:54:17 +02:00
postgres-data: