-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
21 lines (20 loc) · 665 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
21 lines (20 loc) · 665 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: zublo
services:
app:
image: ghcr.io/danielalves96/zublo:latest
container_name: zublo
restart: always
ports:
- "9597:9597"
environment:
PB_ENCRYPTION_KEY: ${PB_ENCRYPTION_KEY}
volumes:
- zublo-volume:/pb/pb_data # Persistent data stored in a Docker named volume (Windows/WSL friendly). If upgrading from a bind mount, migrate existing pb_data into this volume; replace with /path:/pb/pb_data to use a bind mount.
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://localhost:9597/api/health"]
interval: 30s
timeout: 5s
retries: 3
start_period: 15s
volumes:
zublo-volume: