Pull-based GitOps-style Docker Compose deployer: polls a (private) Git repo, detects changed stacks and reconciles only the affected
at main 6 lines 390 B view raw
1# Configuration file for compose-sync 2repo_url: "git@github.com:user/compose-repo.git" # Optional: URL for cloning (not used if repo_path already exists) 3repo_path: "/path/to/local/repo" # Required: Local path to the git repository 4branch: "main" # Optional: Git branch to sync (default: current branch or main) 5concurrency: 3 # Optional: Number of concurrent deployments (default: 3) 6