Inrego commented on PR #655: URL: https://github.com/apache/guacamole-client/pull/655#issuecomment-1246358835
While waiting for a new release of the docker container that fixes this, I made this workaround: On host machine: `curl -L "https://jdbc.postgresql.org/download/postgresql-42.2.24.jre7.jar" > "/opt/guacamole/postgresql-42.2.24.jre7.jar"` In my docker compose: ``` volumes: - /opt/guacamole/postgresql-42.2.24.jre7.jar:/opt/guacamole/postgresql/postgresql-9.4-1201.jdbc41.jar:ro ``` Basically what this does, is download a compatible (newer) version of the postgresql jar, and mounts it into the container as read-only to overwrite the file inside the container. Idea taken from here, but simplified for my own use: https://github.com/truecharts/charts/blob/185b9cc76e80d1c7a5566d0b97d7b8f53b9d9757/charts/stable/guacamole-client/values.yaml#L228-L289 -- 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]
