Home Catalog Vaultwarden
Security & Utilities

Vaultwarden

A lightweight, self-hosted password manager compatible with Bitwarden clients. It provides almost all of the features of the official server without the resource-heavy footprint.

ARM64 & AMD64
Docker & Rootless Podman
100% Self-Hosted (Zero Lock-in)
RAM Profile: Medium
Default Port: Port 8088

Why this Configuration?

Quick Start (Standalone Docker Compose)

The snippet below is immediately ready to run in any standard Docker or Podman environment:

services:
  vaultwarden:
    image: vaultwarden/server:latest
    container_name: vaultwarden
    restart: unless-stopped
    volumes:
      - './data/vaultwarden:/data'
    ports:
      - '8088:80'
    environment:
      - ADMIN_TOKEN_HASH={{ DOTENV.VAULTWARDEN_ADMIN_TOKEN }}
      - SIGNUPS_ALLOWED=true
      - WEB_VAULT_ENABLED=true
    networks:
      - njorddeploy_net

networks:
  njorddeploy_net:

Start the service directly via the command line: docker compose up -d

Configuration & Environment Variables

Key configuration parameters and defaults derived from the NjordDeploy component template:

Variable Default Value Description
SIGNUPS_ALLOWED true Set to 'true' to allow new users to register, or 'false' to disable registration.
WEB_VAULT_ENABLED true Set to 'true' to enable the web-based vault interface.
VAULTWARDEN_WEB_PORT 8088 The external TCP port for the Vaultwarden web interface.
VAULTWARDEN_ADMIN_TOKEN {{ DOTENV.VAULTWARDEN_ADMIN_TOKEN }} Secure hashed token for the admin panel. Generate one via docker exec -it vaultwarden ./vaultwarden hash. For maximum security, leave this blank in your .env file to disable the admin panel entirely.

Ecosystem & Enterprise Integration

Effortless Management with NjordDeploy

Deploy, monitor, and update this service with a single click on your own hardware via the NjordDeploy Configurator.