Files
templates/blueprints/pocketbase/docker-compose.yml
Tillo 2fc9b11bb4 Update Pocketbase docker-compose.yml (#192)
Change the Pocketbase Docker image to a working version in the compose file.
2025-06-24 21:43:44 -06:00

19 lines
577 B
YAML

version: "3.8"
services:
pocketbase:
image: ghcr.io/muchobien/pocketbase:latest
restart: unless-stopped
ports:
- "8090"
volumes:
- "/etc/dokploy/templates/${HASH}/data:/app/pb_data"
- "/etc/dokploy/templates/${HASH}/migrations:/app/pb_migrations"
- "/etc/dokploy/templates/${HASH}/hooks:/app/pb_hooks"
- "/etc/dokploy/templates/${HASH}/public:/app/pb_public"
healthcheck:
test: wget -q --spider http://localhost:8090/api/health || exit 1
interval: 60s
timeout: 5s
retries: 3
start_period: 5s