New Services:
Some checks failed
Deploy to Swarm / deploy (push) Failing after 3s

This commit is contained in:
2025-10-25 12:33:03 -04:00
parent f52f61e448
commit 8f9bd5ec8d
14 changed files with 386 additions and 1 deletions

View File

@@ -0,0 +1,27 @@
services:
prowlarr:
image: lscr.io/linuxserver/prowlarr:latest
networks:
- homelab
ports:
- 9696:9696
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- /mnt/swarm-data/prowlarr:/config
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:9696/ping" ]
interval: 30s
timeout: 10s
retries: 3
start_period: 60s
deploy:
replicas: 1
placement:
constraints:
- node.role == worker
networks:
homelab:
external: true