mirror of
https://github.com/bigbluebutton/docker.git
synced 2024-12-26 00:29:13 +01:00
updated wget to not use proxies
Unfortunately, docker-compose does not respect noProxy hosts defined in ~/.docker/config.json or /etc/systemd/system/docker.service.d/http-proxy.conf and always uses proxy for healthcheck which causes problems. Resolved this by updating wget to not use proxies when checking for bbb-web health.
This commit is contained in:
parent
0dd3d9a0bc
commit
69b54657f3
@ -44,7 +44,7 @@ services:
|
||||
depends_on:
|
||||
- redis
|
||||
healthcheck:
|
||||
test: wget --no-verbose --tries=1 --spider http://10.7.7.2:8090/bigbluebutton/api || exit 1
|
||||
test: wget --no-proxy --no-verbose --tries=1 --spider http://10.7.7.2:8090/bigbluebutton/api || exit 1
|
||||
start_period: 2m
|
||||
environment:
|
||||
DEV_MODE: ${DEV_MODE:-}
|
||||
|
Loading…
Reference in New Issue
Block a user