Skip to main content

Installation

One-Line Install

curl -fsSL https://getarcan.dev/install.sh | sh

Downloads the latest release binary for your platform (macOS, Linux) and places it in your PATH.

Homebrew (macOS / Linux)

brew install arcan

Docker

docker run -d \
--name arcan \
-p 9797:9797 \
-v arcan-data:/root/.arcan/data \
getarcan/arcan:latest

The data volume persists the master key, database, TLS certificates, and plugins across container restarts.

From Source

Requires Go 1.22+:

go install getarcan.dev/arcan/cmd/arcan@latest

Or clone and build:

git clone https://github.com/getarcan/arcan.git
cd arcan
go build -o arcan ./cmd/arcan

Verify Installation

arcan --version

System Requirements

RequirementMinimum
OSmacOS (Apple Silicon, Intel), Linux (amd64, arm64)
Memory64 MB
Disk50 MB (binary + data)
Go (from source)1.22+

Next Steps

Once installed, follow the Quick Start to store your first secret in 3 minutes.