25 lines
837 B
Bash
25 lines
837 B
Bash
# Vaultwarden Docker Compose Environment Variables
|
|
|
|
# Image version tag (default: latest)
|
|
VAULTWARDEN_VERSION=latest
|
|
|
|
# Public URL Vaultwarden is served from — required for web vault and some features to work (e.g. https://vault.example.com)
|
|
VAULTWARDEN_DOMAIN=
|
|
|
|
# Admin panel token — leave empty to disable the admin panel
|
|
# Must be a bcrypt hash, not plain text. Generate with:
|
|
# echo -n "your-password" | htpasswd -niBC 10 "" | tr -d ':\n'
|
|
VAULTWARDEN_ADMIN_TOKEN=
|
|
|
|
# Allow new user registrations (default: false — disable after initial setup)
|
|
VAULTWARDEN_SIGNUPS_ALLOWED=false
|
|
|
|
# Host port to expose the Vaultwarden web UI (default: 80)
|
|
VAULTWARDEN_PORT=80
|
|
|
|
# NFS server hostname or IP address
|
|
VAULTWARDEN_NFS_SERVER=
|
|
|
|
# NFS device path for Vaultwarden data storage (e.g. :/mnt/pool/vaultwarden/data)
|
|
VAULTWARDEN_NFS_DEVICE=
|