Ferdi-Client in Docker optimized for Unraid
Ferdi is a destkop app that helps you organize how you use your favourite apps by combining them into one application. It is based on Franz - a software already used by thousands of people - with the difference that Ferdi gives you many additional features and doesn't restrict its usage! Ferdi is compatible with your existing Franz account so you can continue right where you left off.
UPDATE: The container will check on every start/restart if there is a newer version available.
Env params
Name | Value | Example |
---|---|---|
DATA_DIR | Folder for configfiles and the application | /ferdi |
UID | User Identifier | 99 |
GID | Group Identifier | 100 |
UMASK | Umask value for new created files | 0000 |
DATA_PERMS | Data permissions for config folder | 770 |
Run example
docker run --name Ferdi-Client -d \
-p 8080:8080 \
--env 'UID=99' \
--env 'GID=100' \
--env 'UMASK=0000' \
--env 'DATA_PERMS=770' \
--volume /mnt/cache/appdata/ferdi-client:/ferdi \
ich777/ferdi-client
Webgui address: http://[SERVERIP]:[PORT]/vnc.html?autoconnect=true
Set VNC Password:
Please be sure to create the password first inside the container, to do that open up a console from the container (Unraid: In the Docker tab click on the container icon and on 'Console' then type in the following):
- su $USER
- vncpasswd
- ENTER YOUR PASSWORD TWO TIMES AND PRESS ENTER AND SAY NO WHEN IT ASKS FOR VIEW ACCESS
Unraid: close the console, edit the template and create a variable with the Key
: TURBOVNC_PARAMS
and leave the Value
empty, click Add
and Apply
.
All other platforms running Docker: create a environment variable TURBOVNC_PARAMS
that is empty or like this:
--env 'TURBOVNC_PARAMS=-securitytypes VNC'
This Docker was mainly edited for better use with Unraid, if you don't use Unraid you should definitely try it!