mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
* update pocketbase to 0.27.2 * Update blueprints/pocketbase/docker-compose.yml * Update blueprints/pocketbase/docker-compose.yml * Update blueprints/pocketbase/docker-compose.yml --------- Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
20 lines
568 B
YAML
20 lines
568 B
YAML
version: "3.8"
|
|
services:
|
|
pocketbase:
|
|
image: docker.io/bakirg/pocketbase-docker:latest
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8090"
|
|
volumes:
|
|
- "/etc/dokploy/templates/${HASH}/data:/pb_data"
|
|
- "/etc/dokploy/templates/${HASH}/migrations:/pb_migrations"
|
|
- "/etc/dokploy/templates/${HASH}/hooks:/pb_hooks"
|
|
- "/etc/dokploy/templates/${HASH}/public:/pb_public"
|
|
healthcheck:
|
|
test: wget -q --spider http://localhost:8090/api/health || exit 1
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 5s
|
|
|