{"id":20514784,"url":"https://github.com/rattydave/guacamole-uk","last_synced_at":"2026-05-18T15:33:47.954Z","repository":{"id":85632044,"uuid":"113858592","full_name":"RattyDAVE/guacamole-uk","owner":"RattyDAVE","description":"Stand Alone Guacamole container.","archived":false,"fork":false,"pushed_at":"2022-02-09T10:20:56.000Z","size":49,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-26T13:38:28.279Z","etag":null,"topics":["docker","docker-image","guacamole"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RattyDAVE.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"RattyDAVE"}},"created_at":"2017-12-11T12:51:39.000Z","updated_at":"2022-02-11T21:15:14.000Z","dependencies_parsed_at":"2023-03-09T16:45:13.499Z","dependency_job_id":null,"html_url":"https://github.com/RattyDAVE/guacamole-uk","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RattyDAVE/guacamole-uk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RattyDAVE%2Fguacamole-uk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RattyDAVE%2Fguacamole-uk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RattyDAVE%2Fguacamole-uk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RattyDAVE%2Fguacamole-uk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RattyDAVE","download_url":"https://codeload.github.com/RattyDAVE/guacamole-uk/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RattyDAVE%2Fguacamole-uk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33182876,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T09:27:30.708Z","status":"ssl_error","status_checked_at":"2026-05-18T09:27:28.300Z","response_time":71,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","docker-image","guacamole"],"created_at":"2024-11-15T21:18:12.132Z","updated_at":"2026-05-18T15:33:47.938Z","avatar_url":"https://github.com/RattyDAVE.png","language":"Dockerfile","funding_links":["https://github.com/sponsors/RattyDAVE"],"categories":[],"sub_categories":[],"readme":"# Guacamole\n\nThis is a stand alone Guacamole (https://guacamole.incubator.apache.org/) build with the config saved in a configuration xml file rather than a database and UK keymap included\n\nPut your config XML in \"config\" directory and mount empty \"data\" directory for file transfers, in user-mapping.xml use the following\n\n```\n    \u003cparam name=\"enable-drive\"\u003etrue\u003c/param\u003e\n    \u003cparam name=\"drive-path\"\u003e/file-transfer\u003c/param\u003e\n```\n\nTo use UK keyboard\n```\n    \u003cparam name=\"server-layout\"\u003een-gb-qwerty\u003c/param\u003e\n```\n\nStart with\n```\n    docker run \\\n       -dit \\\n       --name guac \\\n       -p 8080:8080 \\\n       -v ${PWD}/config:/etc/guacamole \\\n       -v ${PWD}/data:/file-transfer \\\n       rattydave/guacamole-uk:latest\n```\n\nThen connect to docker server ```http://docker:8080/remote```\n\n\nExample usermapping.xml taken from http://guacamole.apache.org/doc/gug/configuring-guacamole.html#user-mapping\n\nTo see an example script on how to install please see https://raw.githubusercontent.com/RattyDAVE/guacamole-uk/master/install.sh\n\n## Config File\n\nIn ${PWD}/config create ```usermapping.xml``` with the following \n\n```\n\u003cuser-mapping\u003e\n    \u003cauthorize username=\"John\" password=\"securepassword\"\u003e\n        \u003cprotocol\u003evnc\u003c/protocol\u003e\n        \u003cparam name=\"hostname\"\u003esomevnc.hostname.com\u003c/param\u003e\n        \u003cparam name=\"port\"\u003e5900\u003c/param\u003e\n        \u003cparam name=\"password\"\u003evncpassword\u003c/param\u003e\n    \u003c/authorize\u003e\n\u003c/user-mapping\u003e\n```\n\n\n## Auto Update\n\nTo automatically update I recomend using watchtower.\n\n```\ndocker run -d \\\n    --name watchtower \\\n    -v /var/run/docker.sock:/var/run/docker.sock \\\n    containrrr/watchtower \n```\n\n# Full Version\n\nIf you require the full version then use the following\n\n```\n####### Guacamole #######\n\n#Setup MYSQL vars\nMYSQL_ROOT_PASSWORD=pass@word01\nMYSQL_DATABASE=guacamole_db\nMYSQL_USER=guacamole_user\nMYSQL_PASSWORD=some_password\n\n#Setup Docker instance names\nMYSQL_NAME=mysqldb\nGUACD_NAME=some_guacd\nGUACAMOLE_NAME=some-guacamole\n\ndocker pull guacamole/guacamole\ndocker pull guacamole/guacd\ndocker pull mysql\n\nmkdir /root/dbinit\ndocker run --rm guacamole/guacamole /opt/guacamole/bin/initdb.sh --mysql \u003e /root/dbinit/guacamole_initdb.sql\ndocker run -d --name $MYSQL_NAME -v /root/dbinit:/docker-entrypoint-initdb.d -e MYSQL_ROOT_PASSWORD=$MYSQL_ROOT_PASSWORD -e MYSQL_DATABASE=$MYSQL_DATABASE -e MYSQL_USER=$MYSQL_USER -e MYSQL_PASSWORD=$MYSQL_PASSWORD mysql\nrm -r /root/dbinit\n\ndocker run --name $GUACD_NAME -d guacamole/guacd\ndocker run --name $GUACAMOLE_NAME --link $GUACD_NAME:guacd --link $MYSQL_NAME:mysql -e MYSQL_DATABASE=$MYSQL_DATABASE -e MYSQL_USER=$MYSQL_USER -e MYSQL_PASSWORD=$MYSQL_PASSWORD -d -p 8080:8080 guacamole/guacamole\n\n#Access via ... http://docker.machine:8080/guacamole default password is guacadmin password guacadmin\n####### END Guacamole #######\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frattydave%2Fguacamole-uk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frattydave%2Fguacamole-uk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frattydave%2Fguacamole-uk/lists"}