- Removed all subdirectories - Renamed compose.yml to <stack>-compose.yml - Updated stack.toml to reference new compose file names - Structure is now flat for easier Komodo sync New structure: stacks/ ├── prometheus.toml ├── prometheus-compose.yml ├── grafana.toml ├── grafana-compose.yml ├── gotify.toml ├── gotify-compose.yml ├── vaultwarden.toml ├── vaultwarden-compose.yml └── node-exporter.toml └── node-exporter-compose.yml
25 lines
436 B
TOML
25 lines
436 B
TOML
[stack]
|
|
name = "Gotify"
|
|
description = "Push-Benachrichtigungen selbst gehostet"
|
|
version = "1.0.0"
|
|
category = "communication"
|
|
author = "nocci"
|
|
|
|
[compose]
|
|
file = "gotify-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
|