esc
Type to search the docs
Back to catalog

vaultwarden

Tested

Self-hosted password manager — works with all Bitwarden apps and browser extensions

vaultwarden screenshot

Run locally

Tested and verified to launch successfully.

Terminal
$ npx launchfile up vaultwarden

Requires Docker Desktop. No source code needed — pulls pre-built images and starts vaultwarden with all dependencies.

Image: vaultwarden/server:latest
Launchfile View on GitHub
# yaml-language-server: $schema=https://launchfile.dev/schema/v1
version: launch/v1
name: vaultwarden
description: "Self-hosted password manager — works with all Bitwarden apps and browser extensions"
repository: https://github.com/dani-garcia/vaultwarden
logo: https://raw.githubusercontent.com/dani-garcia/vaultwarden/main/resources/vaultwarden-icon.svg

image: vaultwarden/server:latest
provides:
  - protocol: http
    port: 80
    exposed: true
supports:
  - type: postgres
    set_env:
      DATABASE_URL: $url
env:
  ADMIN_TOKEN:
    generator: secret
    sensitive: true
    description: "Token for accessing the admin panel"
  SIGNUPS_ALLOWED:
    default: "true"
    description: "Whether new user signups are allowed"
storage:
  data:
    path: /data
    persistent: true
restart: always

Test Results

Last Tested

2026-04-06

Health Check

Passing

Startup Time

61s

Total Disk

251 MB

Learn More

Spec references for features used in this Launchfile.