Files
komodo/.komodo/resources.toml
Komodo Bot 11cb0fad54 Fix TOML syntax error in resources.toml
- Remove invalid image_registry string value
- Field expects array or null, not string
2025-12-14 15:17:46 -08:00

52 lines
1.0 KiB
TOML

[[build]]
name = "komodo-build"
description = "Build Docker image for komodo app"
tags = ["gitea"]
[build.config]
# Repo configuration
git_provider = "gitea.straymoog.xyz"
git_account = "stray"
repo = "stray/komodo"
branch = "main"
# Build configuration
build_path = "."
dockerfile_path = "Dockerfile"
# Image configuration
image_name = "komodo-app"
image_tag = "latest"
[[stack]]
name = "komodo-stack"
description = "Deploy komodo app using docker-compose"
tags = ["gitea"]
[stack.config]
# Use compose file from git repo
[stack.config.repo]
git_provider = "gitea.straymoog.xyz"
git_account = "stray"
repo = "stray/komodo"
branch = "main"
path = "docker-compose.yml"
# Or optionally, define inline compose content
# file_contents = '''
# ... compose yaml here ...
# '''
[[sync]]
name = "komodo-sync"
description = "Sync Komodo resources from Git"
tags = ["gitea"]
[sync.config]
git_provider = "gitea.straymoog.xyz"
git_account = "stray"
repo = "stray/komodo"
branch = "main"
resource_path = ".komodo"
commit_to_repo = false