komodo-stacks/stacks/vaultwarden/stack.toml
nocci 2ee82c24e1 feat: Add complete stack.toml files with full metadata
Each stack.toml now includes:
- [stack] section: name, description, version, category, author
- [compose] section: file reference
- [variables] section: secrets where required
- [ports] section: internal port mappings
- [volumes] section: volume definitions
- [healthcheck] section: health check configuration

Stacks updated:
- prometheus
- grafana
- gotify
- vaultwarden
- node-exporter
2026-03-09 19:12:10 +00:00

24 lines
430 B
TOML

[stack]
name = "Vaultwarden"
description = "Password Manager (Bitwarden-kompatibel)"
version = "1.0.0"
category = "security"
author = "nocci"
[compose]
file = "compose.yml"
[variables.secrets]
vaultwarden-admin-token = "Admin API Token (openssl rand -base64 48)"
[ports]
vaultwarden = "80"
[volumes]
vaultwarden_data = "/data"
[healthcheck]
endpoint = "http://localhost:80/alive"
interval = "30s"
timeout = "10s"
retries = 3