mirror of
https://github.com/jwetzell/docker-guacamole.git
synced 2026-08-04 23:17:54 +00:00
Compare commits
5 Commits
1.6.0-20250703
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| f68cb42d2f | |||
| 0046b9f92a | |||
| 56d8f0a882 | |||
| ed49d82733 | |||
| eb2e007d31 |
+1
-1
@@ -52,7 +52,7 @@ RUN set -xe \
|
||||
|
||||
# Add optional extensions
|
||||
RUN set -xe \
|
||||
&& for i in auth-duo auth-header auth-json auth-ldap auth-quickconnect auth-totp history-recording-storage; do \
|
||||
&& for i in auth-ban auth-duo auth-header auth-json auth-ldap auth-quickconnect auth-totp auth-restrict history-recording-storage; do \
|
||||
echo "https://archive.apache.org/dist/guacamole/${GUAC_VER}/binary/guacamole-${i}-${GUAC_VER}.tar.gz" \
|
||||
&& curl -SLO "https://archive.apache.org/dist/guacamole/${GUAC_VER}/binary/guacamole-${i}-${GUAC_VER}.tar.gz" \
|
||||
&& tar -xzf guacamole-${i}-${GUAC_VER}.tar.gz \
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
FROM tomcat:9.0.106-jdk17-temurin-noble
|
||||
FROM tomcat:9.0.120-jdk17-temurin-noble
|
||||
ARG TARGETPLATFORM
|
||||
|
||||
ENV GUAC_VER=1.6.0 \
|
||||
|
||||
@@ -18,7 +18,7 @@ This container runs the guacamole web client, the guacd server and a postgres da
|
||||
docker run \
|
||||
-p 8080:8080 \
|
||||
-v </path/to/config>:/config \
|
||||
jwetzell/guacamole:1.6.0
|
||||
jwetzell/guacamole:1.6.0-20250711
|
||||
```
|
||||
|
||||
## Raspberry Pi / ARMv7
|
||||
@@ -29,7 +29,7 @@ Now that the image has been converted to a multi-platform image the command for
|
||||
docker run \
|
||||
-p 8080:8080 \
|
||||
-v </path/to/config>:/config \
|
||||
jwetzell/guacamole:1.6.0
|
||||
jwetzell/guacamole:1.6.0-20250711
|
||||
```
|
||||
|
||||
## Parameters
|
||||
@@ -51,11 +51,12 @@ docker run \
|
||||
-p 8080:8080 \
|
||||
-v </path/to/config>:/config \
|
||||
-e "EXTENSIONS=auth-ldap,auth-duo"
|
||||
jwetzell/guacamole:1.6.0
|
||||
jwetzell/guacamole:1.6.0-20250711
|
||||
```
|
||||
|
||||
Currently the available extensions are:
|
||||
|
||||
* auth-ban - [Blocking brute-force attacks](https://guacamole.apache.org/doc/gug/auth-ban.html)
|
||||
* auth-duo - [Duo two-factor authentication](https://guacamole.apache.org/doc/gug/duo-auth.html)
|
||||
* auth-header - [HTTP header authentication](https://guacamole.apache.org/doc/gug/header-auth.html)
|
||||
* auth-json - [Encrypted JSON Authentication](https://guacamole.apache.org/doc/gug/json-auth.html)
|
||||
@@ -64,6 +65,7 @@ Currently the available extensions are:
|
||||
* auth-sso-cas - [CAS Authentication](https://guacamole.apache.org/doc/gug/cas-auth.html)
|
||||
* auth-sso-openid - [OpenID Authentication](https://guacamole.apache.org/doc/gug/openid-auth.html)
|
||||
* auth-sso-saml - [SAML Authentication](https://guacamole.apache.org/doc/gug/saml-auth.html)
|
||||
* auth-restrict - [Login / Connection restrictions](https://guacamole.apache.org/doc/gug/auth-restrict.html)
|
||||
* auth-totp - [TOTP two-factor authentication](https://guacamole.apache.org/doc/gug/totp-auth.html)
|
||||
* history-recording-storage - [Session Recording Playback](https://guacamole.apache.org/doc/gug/recording-playback.html#)
|
||||
* vault - [Retrieving secrets from a vault](https://guacamole.apache.org/doc/gug/vault.html)
|
||||
@@ -82,7 +84,7 @@ Mapped volumes behave differently when running Docker for Windows and you may en
|
||||
version: "2"
|
||||
services:
|
||||
guacamole:
|
||||
image: jwetzell/guacamole:1.6.0
|
||||
image: jwetzell/guacamole:1.6.0-20250711
|
||||
container_name: guacamole
|
||||
volumes:
|
||||
- postgres:/config
|
||||
|
||||
Reference in New Issue
Block a user