Arcane
Docker app from Tajniak81's Repository
Overview
Modern Docker Management, Designed for Everyone.
https://getarcane.app/docs/setup/installation
Arcane needs a 32‑byte ENCRYPTION_KEY. On Windows PowerShell:
$bytes = New-Object byte[] 32
[Security.Cryptography.RandomNumberGenerator]::Create().GetBytes($bytes)
$ENCRYPTION_KEY = [Convert]::ToBase64String($bytes)
$ENCRYPTION_KEY
64-character hex JWT secret. On Windows PowerShell:
$bytes = New-Object byte[] 32
[Security.Cryptography.RandomNumberGenerator]::Create().GetBytes($bytes)
$JWT_SECRET = ($bytes | ForEach-Object { $_.ToString("x2") }) -join ""
$JWT_SECRET
Runtime arguments
- Web UI
http://[IP]:[PORT:3552]- Network
bridge- Shell
bash- Privileged
- false
Template configuration
AppDataPathrw
Arcane data directory
- Target
- /app/data
- Default
- /mnt/user/appdata/arcane
Docker SocketPathrw
Docker socket for Arcane to manage containers
- Target
- /var/run/docker.sock
- Default
- /var/run/docker.sock
ProjectsPathrw
Directory containing your compose projects (host path must match inside container)
- Target
- /app/data/projects
- Default
- /mnt/user/projects
WebUI PortPorttcp
Arcane web interface
- Target
- 3552
- Default
- 3552
APP_URLVariable
Base URL for Arcane
- Default
- http://localhost:3552
PUIDVariable
User ID
- Default
- 1000
PGIDVariable
Group ID
- Default
- 1000
ENCRYPTION_KEYVariable
32-byte encryption key (keep secret!)
JWT_SECRETVariable
JWT secret (if required by your setup)
Categories
Details
Repository
ghcr.io/getarcaneapp/arcane:latestLast Updated2026-05-31
First Seen2025-12-07
Run Arcane on Unraid.
Arcane is listed in Community Apps for Unraid OS. Explore Unraid to build a flexible home server, NAS, or homelab.