Komodo is a build and deployment system designed to connect your Git repositories directly to your servers. It automates the process of creating and deploying Docker containers, letting you focus on writing code instead of managing infrastructure.
This tool provides a complete pipeline from code to production with several key capabilities:
The core API and agent are built with Rust, ensuring high performance and reliability for your critical build and deployment tasks.
services:
komodo-core:
image: ghcr.io/moghtech/komodo:latest
container_name: komodo-core
ports:
- "9120:9120"
volumes:
- ./data:/config
- /var/run/docker.sock:/var/run/docker.sock
environment:
- KOMODO_JWT_SECRET=${KOMODO_JWT_SECRET}
restart: unless-stoppedKOMODO_JWT_SECRET=your_super_secret_jwt_stringAuto-fetched about 23 hours ago
Auto-fetched about 23 hours ago