DOWNLOAD CENTER

Get FilePilot

Deploy FilePilot Desktop Client on your operating system or install the Enterprise Vault Server inside your network.

FilePilot Desktop Client

A lightweight app that runs natively on Windows, macOS, and Linux.

Windows

Windows 10 & 11 (64-bit installer or portable zip)

Download Installer

macOS

Universal DMG (Apple Silicon & Intel architectures)

Download DMG

Linux

Debian, RPM, AppImage, and Arch packages

Download Binaries

FilePilot Shell

Premium multi-tab terminal emulator and SSH client. Built on Tauri and Rust.

Windows

Windows 10 & 11 (64-bit installer or portable zip)

Download Installer

macOS

Universal DMG (Apple Silicon & Intel architectures)

Download DMG

Linux

Debian, RPM, AppImage, and Arch packages

Download Binaries

FilePilot Enterprise Vault Server

Run the team server on your own infrastructure to manage access, sync, and audit logs.

Docker Deployment (Recommended)

Pull and deploy the official Vault Server container from Docker Hub. Ideal for Kubernetes, ECS, or local Docker environments.

docker pull abbybagul/filepilot-enterprise-vault:latest
docker run -d -p 8443:8443 \
  -e VAULT_MASTER_KEY=your_key_here \
  -v ./data:/app/data \
  abbybagul/filepilot-enterprise-vault:latest
View Docker Container →

NPM / Source Installation

Install globally via NPM or build directly from source. Compatible with Node.js v18+ and SQLite, PostgreSQL, or MySQL backends.


# Install globally from NPM
npm install -g filepilot-enterprise-vault

# Run the installation wizard
filepilot-enterprise-vault init

# Or run instantly with NPX (No installation required)
npx filepilot-enterprise-vault init


View on NPM → View GitHub Repo →