From 0c988aa51d0e7d1a5e38156a9b95e573e3734e22 Mon Sep 17 00:00:00 2001 From: LRVT <21357789+l4rm4nd@users.noreply.github.com> Date: Wed, 22 Jul 2026 13:44:22 +0200 Subject: [PATCH] Fix environment variable names in docker-compose Updated environment variables for Guacamole service to use POSTGRESQL_USERNAME instead of POSTGRESQL_USER and added GUACAMOLE_HOME path. --- .../docker-compose-gluetun-traefik-authentik-oidc.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/examples/guacamole/docker-compose-gluetun-traefik-authentik-oidc.yml b/examples/guacamole/docker-compose-gluetun-traefik-authentik-oidc.yml index 13b2e28..b43b50b 100644 --- a/examples/guacamole/docker-compose-gluetun-traefik-authentik-oidc.yml +++ b/examples/guacamole/docker-compose-gluetun-traefik-authentik-oidc.yml @@ -36,10 +36,11 @@ services: - postgres - gluetun environment: + - GUACAMOLE_HOME=/etc/guacamole # pseudo home path; placed extensions and contents are moved to /opt/guacamole inside the container - GUACD_HOSTNAME=localhost - POSTGRESQL_HOSTNAME=localhost - POSTGRESQL_DATABASE=guacamole_db - - POSTGRESQL_USER=guacamole_user + - POSTGRESQL_USERNAME=guacamole_user - POSTGRESQL_PASSWORD=ChooseYourOwnPasswordHere1234 - OPENID_ENABLED=true - OPENID_AUTHORIZATION_ENDPOINT=https://authentik.example.com/application/o/authorize/ @@ -49,6 +50,8 @@ services: - OPENID_REDIRECT_URI=https://guacamole.example.com/guacamole - OPENID_USERNAME_CLAIM_TYPE=preferred_username - OPENID_SCOPE=openid email profile + volumes: + - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/guacamole/customization/extensions:/etc/guacamole/extensions:ro network_mode: container:gluetun gluetun: