Added stack.toml files for all stacks: - monitoring/prometheus/stack.toml - monitoring/grafana/stack.toml - monitoring/node-exporter/stack.toml - communication/gotify/stack.toml - communication/vaultwarden/stack.toml Each stack.toml contains: - Stack metadata (name, description, version, category) - Compose file reference - Secret variables - Port mappings - Volume definitions - Network configuration - Healthcheck settings
28 lines
519 B
TOML
28 lines
519 B
TOML
[stack]
|
|
name = "Vaultwarden"
|
|
description = "Password Manager (Bitwarden-kompatibel)"
|
|
version = "1.0.0"
|
|
category = "communication"
|
|
|
|
[compose]
|
|
file = "compose.yml"
|
|
|
|
[variables.secrets]
|
|
vaultwarden-admin-token = "Admin API Token (openssl rand -base64 48)"
|
|
|
|
[ports]
|
|
internal = 80
|
|
external = "127.0.0.1:8080"
|
|
description = "Vaultwarden Web UI"
|
|
|
|
[volumes]
|
|
vaultwarden_data = "/data"
|
|
|
|
[networks]
|
|
vaultwarden-network = "bridge"
|
|
|
|
[healthcheck]
|
|
endpoint = "http://localhost:80/alive"
|
|
interval = "30s"
|
|
timeout = "10s"
|
|
retries = 3
|