Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Guacamole, wallabag, Observium, Paperwork (Zuhkov's Docker Template Repository)

Featured Replies

  • Replies 179
  • Views 55.1k
  • Created
  • Last Reply

I really want the 0.9.7 features so I'm forking his container and will do a pull request.  Its not an easy update.. they changed around how the named the mysql auth model.. so i'm trying

I really want the 0.9.7 features so I'm forking his container and will do a pull request.  Its not an easy update.. they changed around how the named the mysql auth model.. so i'm trying

 

doesn't look too bad..

 

placing some extension files in two places , creating a database and then running some sql script to build the schema and make the tables.

I really want the 0.9.7 features so I'm forking his container and will do a pull request.  Its not an easy update.. they changed around how the named the mysql auth model.. so i'm trying

 

doesn't look too bad..

 

placing some extension files in two places , creating a database and then running some sql script to build the schema and make the tables.

 

Yes sparlkly.. but I'm stoopid.

 

Broken:

 

### Install MySQL Authentication Module
RUN cd /tmp && \
    wget -q --span-hosts http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-mysql-${GUAC_VER}.tar.gz && \
    tar -zxf guacamole-auth-mysql-$GUAC_VER.tar.gz && \
    mv -f `find . -type f -name '*.jar'` /var/lib/guacamole/classpath && \
    mv -f guacamole-auth-mysql-$GUAC_VER/schema/*.sql /root &&\
    rm -Rf /tmp/*

 

My Current Attempt:

 

### Install MySQL Authentication Module
RUN cd /tmp && \
    wget -q --span-hosts http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-jdbc-${GUAC_VER}.tar.gz && \
    tar -zxf guacamole-auth-jdbc-$GUAC_VER.tar.gz && \
    mv -f guacamole-auth-jdbc-$GUAC_VER/mysql/guacamole-auth-jdbc-mysql-$GUAC_VER.jar /var/lib/guacamole/classpath && \
    mv -f guacamole-auth-jdbc-$GUAC_VER/mysql/schema/*.sql /root &&\
    rm -Rf /tmp/*

I really want the 0.9.7 features so I'm forking his container and will do a pull request.  Its not an easy update.. they changed around how the named the mysql auth model.. so i'm trying

 

doesn't look too bad..

 

placing some extension files in two places , creating a database and then running some sql script to build the schema and make the tables.

 

Yes sparlkly.. but I'm stoopid.

 

Broken:

 

### Install MySQL Authentication Module
RUN cd /tmp && \
    wget -q --span-hosts http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-mysql-${GUAC_VER}.tar.gz && \
    tar -zxf guacamole-auth-mysql-$GUAC_VER.tar.gz && \
    mv -f `find . -type f -name '*.jar'` /var/lib/guacamole/classpath && \
    mv -f guacamole-auth-mysql-$GUAC_VER/schema/*.sql /root &&\
    rm -Rf /tmp/*

 

My Current Attempt:

 

### Install MySQL Authentication Module
RUN cd /tmp && \
    wget -q --span-hosts http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-jdbc-${GUAC_VER}.tar.gz && \
    tar -zxf guacamole-auth-jdbc-$GUAC_VER.tar.gz && \
    mv -f guacamole-auth-jdbc-$GUAC_VER/mysql/guacamole-auth-jdbc-mysql-$GUAC_VER.jar /var/lib/guacamole/classpath && \
    mv -f guacamole-auth-jdbc-$GUAC_VER/mysql/schema/*.sql /root &&\
    rm -Rf /tmp/*

 

 

sourceforge is down, (or was 10 minutes ago)

I really want the 0.9.7 features so I'm forking his container and will do a pull request.  Its not an easy update.. they changed around how the named the mysql auth model.. so i'm trying

 

doesn't look too bad..

 

placing some extension files in two places , creating a database and then running some sql script to build the schema and make the tables.

 

Yes sparlkly.. but I'm stoopid.

 

Broken:

 

### Install MySQL Authentication Module
RUN cd /tmp && \
    wget -q --span-hosts http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-mysql-${GUAC_VER}.tar.gz && \
    tar -zxf guacamole-auth-mysql-$GUAC_VER.tar.gz && \
    mv -f `find . -type f -name '*.jar'` /var/lib/guacamole/classpath && \
    mv -f guacamole-auth-mysql-$GUAC_VER/schema/*.sql /root &&\
    rm -Rf /tmp/*

 

My Current Attempt:

 

### Install MySQL Authentication Module
RUN cd /tmp && \
    wget -q --span-hosts http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-jdbc-${GUAC_VER}.tar.gz && \
    tar -zxf guacamole-auth-jdbc-$GUAC_VER.tar.gz && \
    mv -f guacamole-auth-jdbc-$GUAC_VER/mysql/guacamole-auth-jdbc-mysql-$GUAC_VER.jar /var/lib/guacamole/classpath && \
    mv -f guacamole-auth-jdbc-$GUAC_VER/mysql/schema/*.sql /root &&\
    rm -Rf /tmp/*

 

 

sourceforge is down, (or was 10 minutes ago)

 

[me=smdion]finds a bowl of soup to cry in.[/me]

it seems to be in their git repo....

 

according to this...

 

i cloned it and it does seem to be there.

 

 

http://www.epeople.cz/?p=299

 

Yea.. I'm trying not to reinvent the wheel and updates ZUhkov's dockerfile. His builds in mariadb as well.  I may just grab those files and add them to the container.

tar xvf guacamole-auth-jdbc-0.9.7.tar.gz
GUAC_VER=0.9.7 && mv -f ~/guacamole-auth-jdbc-$GUAC_VER/mysql/guacamole-auth-jdbc-mysql-$GUAC_VER.jar ~/

 

 

worked for me.

tar xvf guacamole-auth-jdbc-0.9.7.tar.gz
GUAC_VER=0.9.7 && mv -f ~/guacamole-auth-jdbc-$GUAC_VER/mysql/guacamole-auth-jdbc-mysql-$GUAC_VER.jar ~/

 

 

worked for me.

 

Yea... I changed from

 

http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-jdbc-${GUAC_VER}.tar.gz

 

to

 

http://ufpr.dl.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-jdbc-${GUAC_VER}.tar.gz

 

working now..

tar xvf guacamole-auth-jdbc-0.9.7.tar.gz
GUAC_VER=0.9.7 && mv -f ~/guacamole-auth-jdbc-$GUAC_VER/mysql/guacamole-auth-jdbc-mysql-$GUAC_VER.jar ~/

 

 

worked for me.

 

Yea... I changed from

 

http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-jdbc-${GUAC_VER}.tar.gz

 

to

 

http://ufpr.dl.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-jdbc-${GUAC_VER}.tar.gz

 

working now..

 

cool.

  • 3 weeks later...

Hi, sorry if I have missed something but is the Guacamole docker being updated to the latest version (0.9.7)? There are so many new and useful features that it would be a shame to miss out? Thanks for letting us know, Alex.

Just to clarify a new fork was deployed?

And it has the latest version of guac?

Just to clarify a new fork was deployed?

And it has the latest version of guac?

 

I tried and failed.  Haven't had much time to play and see if I can get it working

I had to increase the size of my docker.img file and then re-download all docker containers - now Observium doesn't work anymore but gives me the following error: MySQL Error: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)

 

Any idea what the problem is? Do I have to delete Observium's config dir and start again? If this is the only way, can I use an external MariaDB database instead?

  • 1 month later...

I was wondering if there has been any progress in updating the guacamole docker to he newest version 0.9.8 that was just released?  All the new features seem great... It also seems to have docker support natively... It would be great if this could get updated...

 

  • 4 weeks later...

Just following up to see is it is possible that this can be updated...

 

http://guac-dev.org/releases

 

The last few release have a bunch of fixes/improvements and native Docker support.

 

It would be great if this can be updated to the latest release!

 

Thanks!

Archived

This topic is now archived and is closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.