diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..c19c4d9 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,22 @@ +services: + zublo: + image: ghcr.io/danielalves96/zublo:latest + container_name: zublo + restart: unless-stopped + #ports: + # - "9597:9597" + environment: + PB_ENCRYPTION_KEY: "yeT1nOocsFf8pnPFOLVYN1SCVbbVm0V5wMOACtrLuqU=" + networks: + - homelab + volumes: + - /home/ampadmin/docker/zublo/zublo-data:/pb/pb_data + healthcheck: + test: ["executable", "arg"] + interval: 1m30s + timeout: 30s + retries: 5 + start_period: 30s +networks: + homelab: + external: true \ No newline at end of file