Merge pull request #10 from brianpooe/claude/improve-docker-compose-01CGxwFACQSqcPVmtuHmWfoT
fix: simplify Emby health check to TCP port check
This commit is contained in:
commit
384939eab3
1 changed files with 3 additions and 3 deletions
|
|
@ -421,11 +421,11 @@ services:
|
|||
devices:
|
||||
- /dev/dri:/dev/dri
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "wget --quiet --tries=1 --spider http://localhost:8096/web/index.html || exit 1"]
|
||||
test: ["CMD-SHELL", "timeout 1 bash -c '</dev/tcp/localhost/8096' || exit 1"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
start_period: 120s
|
||||
start_period: 180s
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue