Compare commits

...

9 Commits

Author SHA1 Message Date
jwetzell 9284e7ab3a Update README.md 2025-07-03 10:24:03 -05:00
jwetzell cb52162bfb update guacamole to 1.6.0 and latest tomcat 9 2025-07-03 08:21:34 -05:00
jwetzell 0e6ea6c206 update base to tomcat 9.0.102 2025-03-26 08:56:12 -05:00
jwetzell b312a3eace remove database extesions from list of avaible extensions 2025-01-25 09:59:08 -06:00
jwetzell b00cb7a9f2 Merge pull request #59 from divinehawk/tomcat-update
Update Tomcat to 9.0.98
2024-12-31 18:13:31 -06:00
Matt Eaton 80044f54a7 Update Tomcat to 9.0.98 2025-01-01 00:51:46 +01:00
jwetzell 6f62295c8b limit build-base to master branch 2024-08-24 11:12:01 -05:00
jwetzell 07290e82c8 upgrade base image to ubuntu noble 2024-08-24 10:43:29 -05:00
jwetzell ecdf5c8137 update base to tomcat 9.0.93 2024-08-24 08:45:03 -05:00
3 changed files with 10 additions and 13 deletions
+2
View File
@@ -5,6 +5,8 @@ on:
push:
paths:
- 'Dockerfile.base'
branches:
- 'master'
jobs:
docker:
runs-on: ubuntu-latest
+4 -6
View File
@@ -1,15 +1,13 @@
FROM tomcat:9.0.88-jdk17
FROM tomcat:9.0.106-jdk17-temurin-noble
ARG TARGETPLATFORM
ENV GUAC_VER=1.5.5 \
ENV GUAC_VER=1.6.0 \
GUACAMOLE_HOME=/app/guacamole \
PG_VER=9.6.24 \
LIBSSH2_VER=1.11.0 \
PGDATA=/config/postgres \
POSTGRES_USER=guacamole \
POSTGRES_DB=guacamole_db
# Add user for postgres
RUN useradd postgres
@@ -35,7 +33,7 @@ RUN apt-get update \
&& apt-get install -y curl ca-certificates gnupg \
libcairo2-dev libjpeg-turbo8-dev libpng-dev libavformat-dev \
libossp-uuid-dev libavcodec-dev libavutil-dev \
libswscale-dev freerdp2-dev libfreerdp-client2-2 libpango1.0-dev \
libswscale-dev freerdp2-dev libpango1.0-dev \
libtelnet-dev libvncserver-dev \
libpulse-dev libssl-dev libvorbis-dev libwebp-dev libwebsockets-dev \
ghostscript build-essential libreadline-dev \
@@ -60,4 +58,4 @@ RUN tar -xzvf /tmp/postgresql-${PG_VER}.tar.gz \
&& ./configure \
&& make \
&& make install \
&& rm -rf /tmp/postgresql-${PG_VER}*
&& rm -rf /tmp/postgresql-${PG_VER}*
+4 -7
View File
@@ -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.5.5
jwetzell/guacamole:1.6.0
```
## 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.5.5
jwetzell/guacamole:1.6.0
```
## Parameters
@@ -51,16 +51,13 @@ docker run \
-p 8080:8080 \
-v </path/to/config>:/config \
-e "EXTENSIONS=auth-ldap,auth-duo"
jwetzell/guacamole:1.5.5
jwetzell/guacamole:1.6.0
```
Currently the available extensions are:
* 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-jdbc-mysql - [MySQL Authentication](https://guacamole.apache.org/doc/gug/jdbc-auth.html)
* auth-jdbc-postgresql - [PostgreSQL Authentication](https://guacamole.apache.org/doc/gug/jdbc-auth.html)
* auth-jdbc-sqlserver - [SQL Server Authentication](https://guacamole.apache.org/doc/gug/jdbc-auth.html)
* auth-json - [Encrypted JSON Authentication](https://guacamole.apache.org/doc/gug/json-auth.html)
* auth-ldap - [LDAP Authentication](https://guacamole.apache.org/doc/gug/ldap-auth.html)
* auth-quickconnect - [Ad-hoc connections extension](https://guacamole.apache.org/doc/gug/adhoc-connections.html)
@@ -85,7 +82,7 @@ Mapped volumes behave differently when running Docker for Windows and you may en
version: "2"
services:
guacamole:
image: jwetzell/guacamole:1.5.5
image: jwetzell/guacamole:1.6.0
container_name: guacamole
volumes:
- postgres:/config