/docker-guacamole

A self-contained guacamole docker container for x64 and ARM. Remotely connect over SSH, RDP or VNC using HTML5.

Primary LanguageDockerfile

Docker Build Status Docker Pulls

Docker Guacamole

A Docker Container for Apache Guacamole, a client-less remote desktop gateway. It supports standard protocols like VNC, RDP, and SSH over HTML5.

This container runs the guacamole web client, the guacd server for jumpserver.

Usage

docker run \
  -p 8080:8080 \
  -e JUMPSERVER_SERVER=http://<jumpserver>:8080 \
  jumpserver/guacamole

Nginx Configure

please add the following configure in you nginx config.

location /guacamole/ {
    proxy_pass http://<guacamole>:8080/;
}