juvanj commented on PR #577: URL: https://github.com/apache/guacamole-server/pull/577#issuecomment-3049758321
> 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 > ``` That helps me very much. I was not aware that the health check from the docker file won't be executed as well and that all of them need to be fine. However I learned again something and I'm very suprised that someone help so quickly. Kinds Jürgen -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
