feat: add transmission healhcheck

This commit is contained in:
Adrian Barrio
2024-10-10 10:44:00 +02:00
parent 2a41963917
commit 44d0b9918b

View File

@@ -11,3 +11,15 @@ services:
- "config:/config"
- "downloads:/downloads"
- "watch:/watch"
healthcheck:
test: [
"CMD",
"curl",
"-sSfL",
"-u",
"${SERVICE_USER_ADMIN}:${SERVICE_PASSWORD_ADMIN}",
"http://localhost:9091/"
]
interval: 30s
timeout: 10s
retries: 3