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.
This commit is contained in:
LRVT
2026-07-22 13:44:22 +02:00
committed by GitHub
parent 305ffc78f6
commit 0c988aa51d
@@ -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: