mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 09:02:15 -06:00
docker: hide healthcheck from logs
This commit is contained in:
parent
71c5565949
commit
d5a9bd80b2
|
@ -17,7 +17,8 @@ services:
|
||||||
|
|
||||||
stop_grace_period: 15s # thumbnailer is allowed to continue finishing up for 10s after the shutdown signal
|
stop_grace_period: 15s # thumbnailer is allowed to continue finishing up for 10s after the shutdown signal
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD-SHELL", "wget --spider -q 127.0.0.1:3923/?reset"]
|
# hide it from logs with "/._" so it matches the default --lf-url filter
|
||||||
|
test: ["CMD-SHELL", "wget --spider -q 127.0.0.1:3923/?reset=/._"]
|
||||||
interval: 1m
|
interval: 1m
|
||||||
timeout: 2s
|
timeout: 2s
|
||||||
retries: 5
|
retries: 5
|
||||||
|
|
|
@ -22,12 +22,6 @@ services:
|
||||||
- 'traefik.http.routers.fs.rule=Host(`fs.example.com`)'
|
- 'traefik.http.routers.fs.rule=Host(`fs.example.com`)'
|
||||||
- 'traefik.http.routers.fs.entrypoints=http'
|
- 'traefik.http.routers.fs.entrypoints=http'
|
||||||
#- 'traefik.http.routers.fs.middlewares=authelia@docker' # TODO: ???
|
#- 'traefik.http.routers.fs.middlewares=authelia@docker' # TODO: ???
|
||||||
healthcheck:
|
|
||||||
test: ["CMD-SHELL", "wget --spider -q 127.0.0.1:3923/?reset"]
|
|
||||||
interval: 1m
|
|
||||||
timeout: 2s
|
|
||||||
retries: 5
|
|
||||||
start_period: 15s
|
|
||||||
stop_grace_period: 15s # thumbnailer is allowed to continue finishing up for 10s after the shutdown signal
|
stop_grace_period: 15s # thumbnailer is allowed to continue finishing up for 10s after the shutdown signal
|
||||||
environment:
|
environment:
|
||||||
LD_PRELOAD: /usr/lib/libmimalloc-secure.so.NOPE
|
LD_PRELOAD: /usr/lib/libmimalloc-secure.so.NOPE
|
||||||
|
|
Loading…
Reference in a new issue