- Remove nested [stack.config.repo] table - Use flat config with file_paths array - Stack config now matches Komodo TOML format
45 lines
884 B
TOML
45 lines
884 B
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]
|
|
git_provider = "gitea.straymoog.xyz"
|
|
git_account = "stray"
|
|
repo = "stray/komodo"
|
|
branch = "main"
|
|
file_paths = ["docker-compose.yml"]
|
|
|
|
[[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
|