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
25 lines
429 B
TOML
25 lines
429 B
TOML
[stack]
|
|
name = "Gotify"
|
|
description = "Push-Benachrichtigungen selbst gehostet"
|
|
version = "1.0.0"
|
|
category = "communication"
|
|
author = "nocci"
|
|
|
|
[compose]
|
|
file = "compose.yml"
|
|
|
|
[variables.secrets]
|
|
gotify-admin-user = "Admin Username"
|
|
gotify-admin-pass = "Admin Password"
|
|
|
|
[ports]
|
|
gotify = "80"
|
|
|
|
[volumes]
|
|
gotify_data = "/app/data"
|
|
|
|
[healthcheck]
|
|
endpoint = "http://localhost:80/health"
|
|
interval = "30s"
|
|
timeout = "10s"
|
|
retries = 3
|