andrechalella commented on PR #577: URL: https://github.com/apache/guacamole-server/pull/577#issuecomment-3049555812
As a stopgap, the fix can be easily inserted in docker-compose.yaml, overriding guacd's default health check. Example from https://github.com/andrechalella/guacamole-dockge/ ``` services: guacd: image: guacamole/guacd networks: - guacamole-network restart: unless-stopped # Custom health-check is needed until the below PR gets merged, # otherwise guacd takes 5 minutes to show as healthy # https://github.com/apache/guacamole-server/pull/577 healthcheck: test: ["CMD", "nc", "-z", "127.0.0.1", "4822"] interval: 5m timeout: 5s start_period: 15s ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@guacamole.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org