Krusader

Krusader

Docker app from junkerderprovinz's Repository

Overview

Krusader file manager with native Dark Mode (Dark Mode) – built on KasmVNC for a smooth, hardware-accelerated web desktop. Far snappier than the noVNC-based Krusader containers (binhex / jlesage / ich777). What's pre-configured: • Dark Mode theme for Krusader, Kate and KDE • Kate as Krusader's external editor • RAR support: right-click → "Extract RAR here" / "to subfolder" • 7z, ZIP, TAR, GZ, BZ2, XZ, LHA, ARJ, ACE, RPM, CPIO • Selectable UI language: 25 languages incl. German, English, French, Spanish, Italian, Portuguese (PT/BR), Dutch, Catalan, Basque, Irish, Danish, Swedish, Norwegian, Finnish, Icelandic, Polish, Czech, Slovak, Hungarian, Romanian, Slovenian, Croatian, Serbian, Bulgarian, Ukrainian, Russian, Greek, Turkish, Hebrew, Arabic, Japanese, Korean, Chinese (CN/TW) • Spell-checking in Kate for ~25 languages via Hunspell Notes: • The /storage volume defaults to /mnt – this gives Krusader access to all shares (/mnt/user) and individual disks (/mnt/disk*). • WebUI opens via HTTPS on port 3001 (self-signed cert — accept it once). HTTPS is required for clipboard support in the browser. HTTP 3000 is also exposed as a fallback. • PUID/PGID default to 99/100 (nobody/users on Unraid). • Auth: leave "KasmVNC Username" and "Password" EMPTY to run without login. Set both to enable HTTP-basic auth on the WebUI. Recommended whenever the container is reachable from anything beyond your LAN. Source on GitHub: https://github.com/junkerderprovinz/krusader
Krusader

Build  Lint  Docker Pulls  Image Size  Arch  KasmVNC  Languages  Unraid  License


A modern, plug-and-play Docker image for Krusader on Unraid. Twin-pane file management in your browser, powered by KasmVNC, with Dark Mode, Kate as external editor, full archive support and 25 UI languages — all configurable from the Unraid template, no SSH or config-file editing required.


Buy me a coffee


Table of Contents

  1. Overview
  2. Screenshots
  3. Quick Start
  4. Configuration
  5. Languages
  6. Right-Click Actions
  7. Customisation & Persistence
  8. Building Locally
  9. Updating
  10. Troubleshooting
  11. Architecture
  12. Contributing / License
  13. Support this project

1. Overview

This image packages Krusader — KDE's twin-pane file manager — into a self-contained Docker container that runs in any modern web browser. It is built on top of linuxserver/baseimage-kasmvnc, so it benefits from LSIO's hardware-accelerated KasmVNC stack and weekly security updates, while everything Krusader-specific (theme, archive tools, right-click actions, language packs, default configs) is layered on top in this repo.

What's included beyond bare Krusader:

  • KasmVNC instead of noVNC — hardware-accelerated rendering, real browser clipboard, native file upload and download, high-DPI ready
  • Dark Mode pre-applied to Krusader, Kate and the whole KDE stack; switch to light with one variable
  • Kate wired up as Krusader's external editor, also Dark Mode, with spell-check
  • krename — KDE's batch-rename dialog bundled; rename hundreds of files at once using regex, counters, case transforms and metadata patterns
  • Full archive support — RAR, 7z, ZIP, TAR, GZ, BZ2, XZ, LHA, ARJ, ACE, RPM, CPIO; right-click "Extract RAR here" works out of the box
  • 25 UI languages picked from a dropdown in the Unraid template
  • Update-safe configs — first-run-only seeding, your customisations in /config survive every docker pull
  • Multi-arch — amd64 and arm64
This image binhex jlesage ich777
Web stack KasmVNC noVNC noVNC noVNC
HW-accelerated rendering
Browser clipboard ⚠️ ⚠️ ⚠️
File upload via WebUI
Dark Mode default
Kate as editor
Batch rename (krename)
RAR right-click
Language dropdown ✅ (25)
Multi-arch ✅ amd64 + arm64 amd64 amd64
Base LinuxServer binhex/Arch jlesage/Alpine ich777/Debian

2. Screenshots

Krusader twin-pane main view with Dark Mode theme
Twin-pane file manager — Dark Mode, F-key shortcuts, in-browser via KasmVNC.


Krusader configurator — Colors
Configurator → Colors: full control over panel foreground / background / selection.


3. Quick Start

Step 1 — Install the template

On Unraid: Apps → search for Krusader → click Install. The Community Applications template is published from the unraid-apps feed (one feed for all of junkerderprovinz's apps).

To load it by hand, pull it into Unraid's user-template folder via the console / SSH:

mkdir -p /boot/config/plugins/dockerMan/templates-user && \
curl -fsSL -o /boot/config/plugins/dockerMan/templates-user/my-Krusader.xml \
  https://raw.githubusercontent.com/junkerderprovinz/unraid-apps/main/krusader/krusader.xml

Step 2 — Add the container

In the Unraid Web UI: Docker tab → Add Container → in the Template dropdown, pick Krusader under User templates. All fields are pre-filled.

Step 3 — Adjust paths and start

The defaults work out of the box, but you may want to tweak:

  • Storage (/storage) — defaults to /mnt, which exposes all shares and disks. Restrict to e.g. /mnt/user if you want.
  • UI Language — dropdown, default de.
  • Themedark or light.
  • KasmVNC Password — leave empty for LAN-only, set anything for exposure beyond the LAN.

Hit Apply. The first start takes 30–60 seconds while the container seeds its config and KasmVNC generates a self-signed certificate.

Step 4 — Open the WebUI

https://<unraid-ip>:3001/ (HTTPS, self-signed — accept the certificate once). Use HTTPS: browsers only allow seamless clipboard sync over HTTPS, so the template's WebUI button points here. http://<unraid-ip>:3000/ is an optional fallback without clipboard support.

Once Community Applications has accepted this image it will also be installable via Apps → search Krusader.

Plain Docker (no Unraid)
docker run -d \
  --name krusader \
  --restart unless-stopped \
  --shm-size=1gb \
  -p 3000:3000 -p 3001:3001 \
  -e PUID=99 -e PGID=100 \
  -e TZ=Europe/Vienna \
  -e KRUSADER_LANG=de \
  -e KRUSADER_THEME=dark \
  -v /mnt/user/appdata/krusader:/config \
  -v /mnt:/storage \
  junkerderprovinz/krusader:latest

--shm-size=1gb is required for smooth KDE rendering. The Unraid template sets it for you.


4. Configuration

Variable Default Description
PUID 99 User ID — Unraid's nobody
PGID 100 Group ID — Unraid's users
TZ Etc/UTC Timezone, e.g. Europe/Vienna
KRUSADER_LANG de UI language — see Languages
KRUSADER_THEME dark dark (Dark Mode) or light (Breeze)
CUSTOM_USER abc KasmVNC HTTP-basic-auth username
PASSWORD (empty) KasmVNC password — set this if exposed beyond LAN
TITLE Krusader Browser tab / KasmVNC top-bar title
UMASK 022 File-creation mask
Port Purpose Volume Purpose
3001 KasmVNC HTTPS (self-signed)default WebUI, needed for clipboard /config Persistent KDE / Krusader / Kate configs
3000 KasmVNC HTTP (optional fallback) /storage Files to manage — default host /mnt

5. Languages

The Unraid template ships a dropdown with 25 UI languages (German default, plus system fallback). Each language has its language-pack-<code> and language-pack-kde-<code> baked in — switching is instant after a restart.

Region Languages
Western Europe 🇩🇪 de Deutsch · 🇬🇧 en English · 🇫🇷 fr Français · 🇪🇸 es Español · 🇮🇹 it Italiano · 🇵🇹 pt Português · 🇳🇱 nl Nederlands · 🇪🇸 ca Català · 🇪🇸 eu Euskara · 🇮🇪 ga Gaeilge
Northern Europe 🇩🇰 da Dansk · 🇸🇪 sv Svenska · 🇳🇴 nb Norsk Bokmål · 🇫🇮 fi Suomi · 🇮🇸 is Íslenska
Central / Eastern Europe 🇵🇱 pl Polski · 🇨🇿 cs Čeština · 🇸🇰 sk Slovenčina · 🇭🇺 hu Magyar · 🇷🇴 ro Română · 🇸🇮 sl Slovenščina · 🇭🇷 hr Hrvatski · 🇷🇸 sr Српски · 🇧🇬 bg Български · 🇺🇦 uk Українська · 🇷🇺 ru Русский · 🇬🇷 el Ελληνικά
Middle East 🇹🇷 tr Türkçe · 🇮🇱 he עברית · 🇸🇦 ar العربية
Asia / CJK 🇯🇵 ja 日本語 · 🇰🇷 ko 한국어 · 🇨🇳 zh 中文
Fallback system — use the container's default locale

Default: de (Deutsch). Set via KRUSADER_LANG or the Unraid dropdown.

How it works: Unraid renders any <Default>a|b|c</Default> value with at least one | as a native <select> dropdown. The cont-init hook re-applies the language on every start.


6. Right-Click Actions

Krusader's UserActions are pre-loaded with extras:

Action Command
Extract RAR here unrar x -o+ into the current directory
Extract RAR to subfolder Same, but into a folder named after the archive
Open with Kate Opens the selected file(s) in Kate
Open Konsole here New Konsole tab in the current directory

For generic archive extraction (7z, ZIP, TAR, …) use Ark's built-in right-click menu — it is already installed and avoids a duplicate "Extract" entry in the context menu.

Edit them via Krusader → Settings → Configure UserActions, or directly at /config/.local/share/krusader/useractions.xml.


7. Customisation & Persistence

On the first start only, the container seeds defaults from /defaults/ into /config/:

/config/
├── .config/
│   ├── kdeglobals          # KDE color scheme + Dark Mode
│   ├── krusaderrc          # Editor=kate, theme, panel layout
│   └── katerc              # Kate Dark Mode
└── .local/share/krusader/
    └── useractions.xml     # right-click actions

A marker file /config/.krusader-firstrun.done is written so subsequent container starts never overwrite your customisations. To re-seed defaults, delete the marker and restart.

The two env-driven knobs (KRUSADER_LANG, KRUSADER_THEME) are re-applied on every start via a cont-init.d hook, so you can flip them freely.

The base image also supports /config/custom-cont-init.d/ for your own init scripts — see the LinuxServer docs.


8. Building Locally

git clone https://github.com/junkerderprovinz/krusader.git
cd krusader

# amd64 only (your local arch)
docker build -t krusader:dev .

# Multi-arch (amd64 + arm64) – needs buildx
docker buildx build --platform linux/amd64,linux/arm64 -t krusader:dev --load .

# Test run
docker run --rm -it \
  -p 3000:3000 \
  -v "$PWD/.dev-config:/config" \
  -v "$PWD:/storage" \
  krusader:dev

9. Updating

docker pull junkerderprovinz/krusader:latest
docker stop krusader && docker rm krusader
# re-create with the same template / docker run args

On Unraid: Docker tab → click the container → Force Update. Your /config is untouched.

The image is rebuilt weekly via GitHub Actions for upstream KasmVNC, Ubuntu and KDE patches.


10. Troubleshooting

WebUI is black / desktop never appears
  • Make sure --shm-size is at least 512mb (Unraid template sets 1gb)
  • Check the container log for KasmVNC startup errors
  • Try opening on https://<ip>:3001/ (self-signed) — sometimes browsers block ws over plain http
  • Wait 30–60 seconds on first start; KDE caches need to be built once
WebUI is unreachable
  • Check the host port isn't already taken: netstat -tlnp | grep 3000
  • Disable the host firewall briefly to rule it out
  • Verify the container is listening: docker exec krusader ss -tlnp
  • Confirm the network is bridge (or host), not a custom br0 whose IP isn't reachable from your client
Right-click "Extract RAR here" does nothing
  • Open a Konsole inside the container: which unrar should print /usr/bin/unrar. If empty, file an issue.
Language change doesn't take effect
  • Restart the container — language is applied at start, not live
  • Check the env value matches a code from the Languages table
  • The script writes /etc/profile.d/zz-krusader-lang.sh and updates kdeglobals[Translations]
Files outside /storage not visible
  • That's by design. Map another path: -v /mnt/disks/somepool:/storage/somepool
"Permission denied" on /storage/...
  • Check PUID / PGID. On Unraid, 99:100 (nobody:users) match share permissions.
KasmVNC password not accepted
  • Open in a private window once — your browser may have cached old credentials.
Container fails to start — "mkdir /etc/localtime: file exists"

You have a /etc/localtime:/etc/localtime:ro bind-mount configured (e.g. from an old template version). The LSIO base image manages /etc/localtime internally as a symlink; a bind-mount on top causes the conflict.

Fix: Remove the /etc/localtime path mapping from your container settings and use the TZ environment variable instead (e.g. TZ=Europe/Vienna). The TZ variable is the correct and supported way to set the timezone in LSIO-based containers.

Bottom status bar reappears after a restart (known limitation)

Krusader 2.8.1 does not persist the bottom (KDE) status bar's visibility. Even with [Startup] Show statusbar=false in krusaderrc the bar is shown again on the next start, and Krusader only saves such UI state on a clean exit — which a hard docker stop never performs. The container can't force-hide it either: the only reliable mechanism (a Qt application stylesheet) also disables Krusader's custom status-bar colours, which are deliberately kept user-configurable.

Workaround: hide it per session via View → Show Statusbar. The per-panel (upper) status bar with the free-space / device info is unaffected and stays fully configurable.


11. Architecture

┌─────────────────────────────────────────────────────────────────┐
│  ghcr.io/linuxserver/baseimage-kasmvnc:ubuntunoble              │
│  ┌───────────────────────────────────────────────────────────┐  │
│  │  s6-overlay v3 init                                       │  │
│  │   ↓                                                       │  │
│  │  s6-rc.d/init-krusader/run                                │  │
│  │   ↓ seeds /config from /defaults  (first run only)        │  │
│  │   ↓ sets theme, locale → s6 container environment         │  │
│  │   ↓                                                       │  │
│  │  KasmVNC ← /defaults/autostart                            │  │
│  │              → dbus-launch krusader-session               │  │
│  │                 → ksmserver (KDE session manager)         │  │
│  │                 → krusader                                │  │
│  └───────────────────────────────────────────────────────────┘  │
└─────────────────────────────────────────────────────────────────┘

12. Contributing / License

Pull requests welcome. Issues: https://github.com/junkerderprovinz/krusader/issues.

Licensing — dual:

  • This wrapper repository (Dockerfile, rootfs/, scripts, Unraid templates, README and banner/icon artwork) is licensed under the MIT License.
  • Krusader itself and the bundled KDE / Qt / KasmVNC / unrar / LSIO base-image components retain their upstream licenses (mostly GPL-2.0+ / GPL-3.0+ / LGPL-2.1+, plus unrar's non-free terms). When you run, redistribute or rebuild the resulting container image, you must comply with all of those licenses, not only with this wrapper's MIT license. See the LICENSE file for the full notice.
# Run lints locally (CI runs them too)
docker run --rm -i hadolint/hadolint < Dockerfile
docker run --rm -v "$PWD:/mnt" koalaman/shellcheck:stable rootfs/etc/cont-init.d/* rootfs/usr/local/bin/*
xmllint --noout unraid-template.xml ca_profile.xml

Credits

  • Krusader — KDE community, the actual file manager
  • LinuxServer.io — for the excellent baseimage-kasmvnc
  • KasmVNC — for finally fixing remote-desktop-in-a-browser
  • Kate — best lightweight editor on Linux
  • Inspiration: binhex, jlesage and ich777 Krusader containers — they paved the way

13. Support this project

If this template saves you a setup hassle or a debug night, consider buying me a coffee:

Buy me a coffee


Part of a family of self-hosted Unraid apps + plugins by junkerderprovinz — see them all at github.com/junkerderprovinz, or install from Community Applications.

Install Krusader on Unraid in a few clicks.

Find Krusader in Community Apps on your Unraid server, review the template, and click Install. Unraid handles the Docker app or plugin setup from the published template.

Open the Apps tab on your Unraid server Search Community Apps for Krusader Review the template variables and paths Click Install

Download Statistics

113
Total Downloads

Related apps

Details

Repository
junkerderprovinz/krusader:latest
Last Updated2026-06-03
First Seen2026-06-09

Runtime arguments

Web UI
https://[IP]:[PORT:3001]/
Network
bridge
Shell
bash
Privileged
false
Extra Params
--restart=unless-stopped --shm-size=1gb

Template configuration

WebUI Port (HTTPS / KasmVNC)Porttcp

HTTPS port of the KasmVNC WebUI (self-signed cert). This is the default WebUI — HTTPS is required for clipboard support in the browser. Accept the self-signed certificate once.

Target
3001
Default
3001
Value
3001
WebUI Port (HTTP / KasmVNC)Porttcp

HTTP port of the KasmVNC WebUI. Optional fallback — the WebUI defaults to HTTPS (3001) because browsers only allow seamless clipboard over HTTPS.

Target
3000
Default
3000
Value
3000
AppData (/config)Pathrw

Persistent Krusader configs, history, bookmarks, default-files lock.

Target
/config
Default
/mnt/user/appdata/krusader
Value
/mnt/user/appdata/krusader
Storage (/storage)Pathrw,slave

Main path for file operations. Default /mnt gives access to all shares (/mnt/user) and individual disks (/mnt/disk*). Adjust if you only need specific shares.

Target
/storage
Default
/mnt
Value
/mnt
UI Language (KRUSADER_LANG)Variable

Language for the Krusader / Kate UI. 25 codes available: de, en, fr, es, it, pt, nl, ca, eu, ga, da, sv, nb, fi, is, pl, cs, sk, hu, ro, sl, hr, sr, bg, uk, ru, el, tr, he, ar, ja, ko, zh. Use 'system' for the container default. Re-applied on every container start.

Target
KRUSADER_LANG
Default
de|en|fr|es|it|pt|nl|ca|eu|ga|da|sv|nb|fi|is|pl|cs|sk|hu|ro|sl|hr|sr|bg|uk|ru|el|tr|he|ar|ja|ko|zh|system
Value
de
Theme (KRUSADER_THEME)Variable

Color scheme. 'dark' = Dark Mode, 'light' = Breeze.

Target
KRUSADER_THEME
Default
dark|light
Value
dark
KasmVNC UsernameVariable

Optional. Username for HTTP-basic-auth on the WebUI. Leave EMPTY together with the password for no login. Set both fields to enable login (recommended outside trusted LANs).

Target
CUSTOM_USER
KasmVNC PasswordVariable

Optional. Password for HTTP-basic-auth on the WebUI. Leave EMPTY together with the username for no login. STRONGLY recommended whenever the container is reachable from outside your LAN.

Target
PASSWORD
Timezone (TZ)Variable

Container timezone (affects log timestamps and file mtimes). Use this instead of a /etc/localtime bind-mount — the LSIO base image manages /etc/localtime internally via TZ.

Target
TZ
Default
Europe/Vienna|Africa/Abidjan|Africa/Accra|Africa/Addis_Ababa|Africa/Algiers|Africa/Asmera|Africa/Bamako|Africa/Bangui|Africa/Banjul|Africa/Bissau|Africa/Blantyre|Africa/Brazzaville|Africa/Bujumbura|Africa/Cairo|Africa/Casablanca|Africa/Ceuta|Africa/Conakry|Africa/Dakar|Africa/Dar_es_Salaam|Africa/Djibouti|Africa/Douala|Africa/El_Aaiun|Africa/Freetown|Africa/Gaborone|Africa/Harare|Africa/Johannesburg|Africa/Juba|Africa/Kampala|Africa/Khartoum|Africa/Kigali|Africa/Kinshasa|Africa/Lagos|Africa/Libreville|Africa/Lome|Africa/Luanda|Africa/Lubumbashi|Africa/Lusaka|Africa/Malabo|Africa/Maputo|Africa/Maseru|Africa/Mbabane|Africa/Mogadishu|Africa/Monrovia|Africa/Nairobi|Africa/Ndjamena|Africa/Niamey|Africa/Nouakchott|Africa/Ouagadougou|Africa/Porto-Novo|Africa/Sao_Tome|Africa/Tripoli|Africa/Tunis|Africa/Windhoek|America/Adak|America/Anchorage|America/Anguilla|America/Antigua|America/Araguaina|America/Argentina/La_Rioja|America/Argentina/Rio_Gallegos|America/Argentina/Salta|America/Argentina/San_Juan|America/Argentina/San_Luis|America/Argentina/Tucuman|America/Argentina/Ushuaia|America/Aruba|America/Asuncion|America/Bahia|America/Bahia_Banderas|America/Barbados|America/Belem|America/Belize|America/Blanc-Sablon|America/Boa_Vista|America/Bogota|America/Boise|America/Buenos_Aires|America/Cambridge_Bay|America/Campo_Grande|America/Cancun|America/Caracas|America/Catamarca|America/Cayenne|America/Cayman|America/Chicago|America/Chihuahua|America/Ciudad_Juarez|America/Coral_Harbour|America/Cordoba|America/Costa_Rica|America/Coyhaique|America/Creston|America/Cuiaba|America/Curacao|America/Danmarkshavn|America/Dawson|America/Dawson_Creek|America/Denver|America/Detroit|America/Dominica|America/Edmonton|America/Eirunepe|America/El_Salvador|America/Fort_Nelson|America/Fortaleza|America/Glace_Bay|America/Godthab|America/Goose_Bay|America/Grand_Turk|America/Grenada|America/Guadeloupe|America/Guatemala|America/Guayaquil|America/Guyana|America/Halifax|America/Havana|America/Hermosillo|America/Indiana/Knox|America/Indiana/Marengo|America/Indiana/Petersburg|America/Indiana/Tell_City|America/Indiana/Vevay|America/Indiana/Vincennes|America/Indiana/Winamac|America/Indianapolis|America/Inuvik|America/Iqaluit|America/Jamaica|America/Jujuy|America/Juneau|America/Kentucky/Monticello|America/Kralendijk|America/La_Paz|America/Lima|America/Los_Angeles|America/Louisville|America/Lower_Princes|America/Maceio|America/Managua|America/Manaus|America/Marigot|America/Martinique|America/Matamoros|America/Mazatlan|America/Mendoza|America/Menominee|America/Merida|America/Metlakatla|America/Mexico_City|America/Miquelon|America/Moncton|America/Monterrey|America/Montevideo|America/Montserrat|America/Nassau|America/New_York|America/Nome|America/Noronha|America/North_Dakota/Beulah|America/North_Dakota/Center|America/North_Dakota/New_Salem|America/Ojinaga|America/Panama|America/Paramaribo|America/Phoenix|America/Port-au-Prince|America/Port_of_Spain|America/Porto_Velho|America/Puerto_Rico|America/Punta_Arenas|America/Rankin_Inlet|America/Recife|America/Regina|America/Resolute|America/Rio_Branco|America/Santarem|America/Santiago|America/Santo_Domingo|America/Sao_Paulo|America/Scoresbysund|America/Sitka|America/St_Barthelemy|America/St_Johns|America/St_Kitts|America/St_Lucia|America/St_Thomas|America/St_Vincent|America/Swift_Current|America/Tegucigalpa|America/Thule|America/Tijuana|America/Toronto|America/Tortola|America/Vancouver|America/Whitehorse|America/Winnipeg|America/Yakutat|Antarctica/Casey|Antarctica/Davis|Antarctica/DumontDUrville|Antarctica/Macquarie|Antarctica/Mawson|Antarctica/McMurdo|Antarctica/Palmer|Antarctica/Rothera|Antarctica/Syowa|Antarctica/Troll|Antarctica/Vostok|Arctic/Longyearbyen|Asia/Aden|Asia/Almaty|Asia/Amman|Asia/Anadyr|Asia/Aqtau|Asia/Aqtobe|Asia/Ashgabat|Asia/Atyrau|Asia/Baghdad|Asia/Bahrain|Asia/Baku|Asia/Bangkok|Asia/Barnaul|Asia/Beirut|Asia/Bishkek|Asia/Brunei|Asia/Calcutta|Asia/Chita|Asia/Colombo|Asia/Damascus|Asia/Dhaka|Asia/Dili|Asia/Dubai|Asia/Dushanbe|Asia/Famagusta|Asia/Gaza|Asia/Hebron|Asia/Hong_Kong|Asia/Hovd|Asia/Irkutsk|Asia/Jakarta|Asia/Jayapura|Asia/Jerusalem|Asia/Kabul|Asia/Kamchatka|Asia/Karachi|Asia/Katmandu|Asia/Khandyga|Asia/Krasnoyarsk|Asia/Kuala_Lumpur|Asia/Kuching|Asia/Kuwait|Asia/Macau|Asia/Magadan|Asia/Makassar|Asia/Manila|Asia/Muscat|Asia/Nicosia|Asia/Novokuznetsk|Asia/Novosibirsk|Asia/Omsk|Asia/Oral|Asia/Phnom_Penh|Asia/Pontianak|Asia/Pyongyang|Asia/Qatar|Asia/Qostanay|Asia/Qyzylorda|Asia/Rangoon|Asia/Riyadh|Asia/Saigon|Asia/Sakhalin|Asia/Samarkand|Asia/Seoul|Asia/Shanghai|Asia/Singapore|Asia/Srednekolymsk|Asia/Taipei|Asia/Tashkent|Asia/Tbilisi|Asia/Tehran|Asia/Thimphu|Asia/Tokyo|Asia/Tomsk|Asia/Ulaanbaatar|Asia/Urumqi|Asia/Ust-Nera|Asia/Vientiane|Asia/Vladivostok|Asia/Yakutsk|Asia/Yekaterinburg|Asia/Yerevan|Atlantic/Azores|Atlantic/Bermuda|Atlantic/Canary|Atlantic/Cape_Verde|Atlantic/Faeroe|Atlantic/Madeira|Atlantic/Reykjavik|Atlantic/South_Georgia|Atlantic/St_Helena|Atlantic/Stanley|Australia/Adelaide|Australia/Brisbane|Australia/Broken_Hill|Australia/Darwin|Australia/Eucla|Australia/Hobart|Australia/Lindeman|Australia/Lord_Howe|Australia/Melbourne|Australia/Perth|Australia/Sydney|Europe/Amsterdam|Europe/Andorra|Europe/Astrakhan|Europe/Athens|Europe/Belgrade|Europe/Berlin|Europe/Bratislava|Europe/Brussels|Europe/Bucharest|Europe/Budapest|Europe/Busingen|Europe/Chisinau|Europe/Copenhagen|Europe/Dublin|Europe/Gibraltar|Europe/Guernsey|Europe/Helsinki|Europe/Isle_of_Man|Europe/Istanbul|Europe/Jersey|Europe/Kaliningrad|Europe/Kiev|Europe/Kirov|Europe/Lisbon|Europe/Ljubljana|Europe/London|Europe/Luxembourg|Europe/Madrid|Europe/Malta|Europe/Mariehamn|Europe/Minsk|Europe/Monaco|Europe/Moscow|Europe/Oslo|Europe/Paris|Europe/Podgorica|Europe/Prague|Europe/Riga|Europe/Rome|Europe/Samara|Europe/San_Marino|Europe/Sarajevo|Europe/Saratov|Europe/Simferopol|Europe/Skopje|Europe/Sofia|Europe/Stockholm|Europe/Tallinn|Europe/Tirane|Europe/Ulyanovsk|Europe/Vaduz|Europe/Vatican|Europe/Vilnius|Europe/Volgograd|Europe/Warsaw|Europe/Zagreb|Europe/Zurich|Indian/Antananarivo|Indian/Chagos|Indian/Christmas|Indian/Cocos|Indian/Comoro|Indian/Kerguelen|Indian/Mahe|Indian/Maldives|Indian/Mauritius|Indian/Mayotte|Indian/Reunion|Pacific/Apia|Pacific/Auckland|Pacific/Bougainville|Pacific/Chatham|Pacific/Easter|Pacific/Efate|Pacific/Enderbury|Pacific/Fakaofo|Pacific/Fiji|Pacific/Funafuti|Pacific/Galapagos|Pacific/Gambier|Pacific/Guadalcanal|Pacific/Guam|Pacific/Honolulu|Pacific/Kiritimati|Pacific/Kosrae|Pacific/Kwajalein|Pacific/Majuro|Pacific/Marquesas|Pacific/Midway|Pacific/Nauru|Pacific/Niue|Pacific/Norfolk|Pacific/Noumea|Pacific/Pago_Pago|Pacific/Palau|Pacific/Pitcairn|Pacific/Ponape|Pacific/Port_Moresby|Pacific/Rarotonga|Pacific/Saipan|Pacific/Tahiti|Pacific/Tarawa|Pacific/Tongatapu|Pacific/Truk|Pacific/Wake|Pacific/Wallis
Value
Europe/Vienna
User ID (PUID)Variable

User-ID Krusader runs as. Default 99 (nobody on Unraid).

Target
PUID
Default
99
Value
99
Group ID (PGID)Variable

Group-ID. Default 100 (users on Unraid).

Target
PGID
Default
100
Value
100
UMASKVariable

Permission mask for newly created files. Use 000 if you want every container user to read/write everything.

Default
022|000|002|077
Value
022