Commit graph

23 commits

Author SHA1 Message Date
1864370236 Ollama Init-Container für automatisches Modell-Pullen (embeddinggemma) 2026-03-29 11:17:43 +02:00
86f7178b2b Add .env.example template for Blinko stack 2026-03-29 11:08:48 +02:00
ebd6e7c3ee Add Blinko stack - Note-taking app with Ollama AI integration 2026-03-29 11:08:36 +02:00
0e3f9d74d4 stacks/obsidian-livesync/.env hinzugefügt 2026-03-27 18:17:57 +01:00
48807557c1 stacks/obsidian-livesync/.env gelöscht 2026-03-27 17:45:57 +01:00
3c658a7237 add env 2026-03-27 17:27:56 +01:00
Amber (Komodo Assistant)
8cea7aa7ad fix: Remove default value from OBSIDIAN_USER env var
Docker Compose doesn't support ${VAR:_default} syntax
2026-03-27 13:22:11 +01:00
Amber (Komodo Assistant)
9baedc40e9 fix: Correct environment variable syntax for Komodo Secrets
- Replace ${SECRET:name} with ${NAME} format
- Replace hyphens with underscores in variable names
- Affected: gotify, grafana, vaultwarden, obsidian-livesync
2026-03-27 13:09:38 +01:00
Amber (Komodo Assistant)
8dfb692826 fix: Rename compose.yml to compose.yaml for Komodo compatibility
Komodo Resource Sync expects compose.yaml (not .yml)
All 22 stack compose files renamed for consistency
2026-03-27 12:53:49 +01:00
Amber
778d2d2a7e Add obsidian-livesync stack - Self-hosted Obsidian Sync with CouchDB 2026-03-26 18:46:55 +01:00
0a0bea9584 feat: Add final stacks (Batch 3)
Added stacks:
- plex (Media server)
- pterodactyl-panel (Game server management)
- gotosocial (ActivityPub/Fediverse)
- backrest (Backup UI)

All stacks include:
- compose.yml with proper configuration
- README.md with deployment info
- stack.toml for Komodo Resource Sync

TOTAL: 21 stacks ready for Komodo deployment!
2026-03-09 21:18:23 +00:00
41b4381048 feat: Add 7 new stacks (Batch 2)
Added stacks:
- nextcloud-aio (Cloud storage)
- wordpress (CMS)
- searxng (Meta search)
- authentik (SSO provider)
- jellyfin (Media server)

All stacks include:
- compose.yml with proper configuration
- README.md with deployment info
- stack.toml for Komodo Resource Sync
2026-03-09 20:35:55 +00:00
03977fae5e feat: Add 10 new stacks (Batch 1)
Added stacks:
- ntfy (Push notifications)
- promtail (Log collector)
- loki (Log aggregation)
- forgejo (Git server)
- immich (Photo backup)
- wireguard (VPN)
- portainer (Docker UI)

All stacks include:
- compose.yml with proper configuration
- README.md with deployment info
- stack.toml for Komodo Resource Sync
2026-03-09 20:32:09 +00:00
606a3ed72c feat: Add stack.toml in each stack directory
Each stack now has a stack.toml that defines the stack for Resource Sync:

[[stacks]]
name = "..."
description = "..."
compose_path = "compose.yml"

This tells Komodo what each stack is when using Resource Sync.
2026-03-09 20:05:50 +00:00
b37541bb7a feat: Restructure to subdirectories with compose.yml
Each stack now has its own directory with standard compose.yml:
- stacks/gotify/compose.yml
- stacks/prometheus/compose.yml
- stacks/grafana/compose.yml
- stacks/vaultwarden/compose.yml
- stacks/node-exporter/compose.yml

Benefits:
- Cleaner structure
- Easier to maintain
- Works with Komodo manual stack creation
- README.md for each stack with deployment info

Usage in Komodo:
1. Stacks → Add Stack
2. Source: Git Repo (nocci/komodo-stacks)
3. Path: stacks/<stack-name>/ (the folder!)
4. Deploy to server
2026-03-09 19:51:35 +00:00
f0bcf8c70c feat: Flatten stack structure - all stacks directly in stacks/
- 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
2026-03-09 19:26:17 +00:00
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
72e45d5c84 feat: Add stack.toml metadata files for all stacks 2026-03-09 19:05:23 +00:00
a7b59b417c fix: Move all stacks directly under stacks/ (no category subfolders) 2026-03-09 17:37:32 +00:00
d9f4e1d22c fix: Remove stack.toml files - Komodo v2 may only need compose.yml 2026-03-09 16:42:26 +00:00
23d823b79e fix: Simplify stack.toml format to basic metadata only 2026-03-09 16:34:45 +00:00
8cc2076a50 feat: Add stack.toml metadata files for Komodo recognition
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
2026-03-09 16:29:23 +00:00
f9fdea3a1f feat: Initial stacks for testing
Added first test stacks:
- monitoring/prometheus
- monitoring/grafana
- monitoring/node-exporter
- communication/gotify
- communication/vaultwarden

All stacks:
- Use localhost ports only (for Caddy reverse proxy)
- Support Komodo Secrets via ${SECRET:secret-name}
- Include README with Caddy integration instructions
- Ready for Komodo v2 Resource Sync
2026-03-09 16:02:18 +00:00