# docker-guacamole **Repository Path**: ananspace/docker-guacamole ## Basic Information - **Project Name**: docker-guacamole - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-06-17 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![Docker Build Status](https://img.shields.io/docker/build/jumpserver/guacamole.svg?style=for-the-badge)](https://hub.docker.com/r/jumpserver/guacamole/) [![Docker Pulls](https://img.shields.io/docker/pulls/jumpserver/guacamole.svg?style=for-the-badge)](https://hub.docker.com/r/jumpserver/guacamole/) # Docker Guacamole A Docker Container for [Apache Guacamole](https://guacamole.incubator.apache.org/), 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 ```shell docker run \ -p 8080:8080 \ -e JUMPSERVER_SERVER=http://:8080 \ jumpserver/guacamole ``` ## Nginx Configure please add the following configure in you nginx config. ``` location /guacamole/ { proxy_pass http://:8080/; } ```