Arcane

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

Install Arcane on Unraid in a few clicks.

Find Arcane 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 Arcane Review the template variables and paths Click Install

Related apps

Explore more like this

Explore all

Details

Repository
ghcr.io/getarcaneapp/arcane:latest
Last Updated2026-07-12
First Seen2025-12-07

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)