We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the branding.jar file dissapears from the volume created as soon as the container is restarted
Originally posted by @carlostico in #3 (comment)
The text was updated successfully, but these errors were encountered:
Hi @carlostico ,
You could try using a mounted folder instead of a docker volume.
Change your docker-compose.yaml to:
docker-compose.yaml
volumes: - ./extensions:/opt/guacamole/extensions/
This will create a folder extensions on startup where you can put your .jar files.
extensions
Sorry, something went wrong.
Hello.
You need to include the option in ENVIROMENTS:
- GUACAMOLE_HOME=/etc/guacamole
So in your volume you can point something like this:
volumes: - ./extensions:/etc/guacamole/extensions
Including your configured .jar file on your local machine within the "extensions" folder.
No branches or pull requests
Originally posted by @carlostico in #3 (comment)
The text was updated successfully, but these errors were encountered: