Files
templates/blueprints/postgresus/docker-compose.yml
Mauricio Siu cd16441901 fix: add databasus (postgresus renamed upstream)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-14 11:36:03 -06:00

26 lines
705 B
YAML

services:
postgresus:
# Postgresus was renamed upstream to Databasus (https://github.com/databasus/databasus).
# This image is frozen at its final release; use the "databasus" template for new deployments.
image: rostislavdugin/postgresus:v2.15.3
ports:
- "4005"
volumes:
# Persistent data storage
- postgresus-data:/postgresus-data
restart: unless-stopped
environment:
# Optional: Set timezone
- TZ=UTC
healthcheck:
test: [ "CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:4005" ]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
volumes:
postgresus-data:
driver: local