{"id":49933713,"url":"https://github.com/hanymamdouh82/contctrl","last_synced_at":"2026-05-22T10:01:02.949Z","repository":{"id":358213350,"uuid":"1240146372","full_name":"hanymamdouh82/contctrl","owner":"hanymamdouh82","description":"A minimal, keyboard-driven control plane for managing Docker Compose projects at scale.","archived":false,"fork":false,"pushed_at":"2026-05-17T06:09:24.000Z","size":666,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-18T06:51:37.912Z","etag":null,"topics":["cli","container-management","devops","docker","docker-compose","fuzzy-search","golang","terminal"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hanymamdouh82.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"Contributing.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-15T20:19:20.000Z","updated_at":"2026-05-17T06:09:27.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/hanymamdouh82/contctrl","commit_stats":null,"previous_names":["hanymamdouh82/contctrl"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hanymamdouh82/contctrl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hanymamdouh82%2Fcontctrl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hanymamdouh82%2Fcontctrl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hanymamdouh82%2Fcontctrl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hanymamdouh82%2Fcontctrl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hanymamdouh82","download_url":"https://codeload.github.com/hanymamdouh82/contctrl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hanymamdouh82%2Fcontctrl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33205415,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T09:27:30.708Z","status":"online","status_checked_at":"2026-05-19T02:00:06.763Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","container-management","devops","docker","docker-compose","fuzzy-search","golang","terminal"],"created_at":"2026-05-17T05:10:56.169Z","updated_at":"2026-05-22T10:01:02.940Z","avatar_url":"https://github.com/hanymamdouh82.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# contctrl\n\n[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)\n[![Go version](https://img.shields.io/badge/go-1.26+-00ADD8.svg)](https://golang.org)\n\nA minimal, keyboard-driven control plane for managing Docker Compose projects at scale.\n\n![demo](docs/demo.gif)\n\n## Why\n\nWhen you have dozens of Compose projects spread across a directory tree, jumping between them with plain shell commands becomes tedious. `contctrl` builds a catalog of all your projects and lets you navigate, select, and act on them through fuzzy finding — no typing full paths or service names.\n\n## Features\n\n- Fuzzy-find across all your Compose projects\n- Select stacks and services interactively\n- Run, stop, pull, and restart services with a single command\n- Clean, minimal output that stays out of your way\n- Raw Docker output streamed in real time\n\n## Installation\n\n**Requirements**\n\n- Go 1.26+\n- Docker with Compose plugin\n\n```sh\ngit clone https://github.com/hanymamdouh82/contctrl.git\ncd contctrl\nmake install\n```\n\n## Project Structure\n\n`contctrl` expects a base directory containing your Compose projects. Each subdirectory is treated as a project and should include:\n\n- One or more `*.yml` Compose files\n- A `metadata.yml` file describing the project stacks and services\n\nExample layout:\n\n```\n/mnt/repos/containerization/\n├── myapp/\n│   ├── docker-compose.yml\n│   └── metadata.yml\n├── monitoring/\n│   ├── monitoring-dev.yml\n│   ├── monitoring-prod.yml\n│   └── metadata.yml\n```\n\n## Usage\n\n```sh\ncontctrl run      # fuzzy select project \u003e file \u003e stack, then bring up services\ncontctrl stop     # fuzzy select project \u003e file, then stop all services\ncontctrl pull     # fuzzy select project \u003e file \u003e stack, pull images and restart\ncontctrl restart  # fuzzy select project \u003e stack, pull images\ncontctrl edit     # fuzzy select project \u003e file \u003e edit compose file\ncontctrl meta     # fuzzy select project \u003e edit metadata file\ncontctrl config   # edit contctrl.yml file\n```\n\nAll selection steps are interactive via fuzzy finder. If a project has only one Compose file, it is used automatically.\n\n## Configuration\n\nconfiguration file is located at `~/.config/contctrl.yml`. File is created automatically if doesn't exit on first run.\n\nTo edit config file:\n\n```sh\ncontctrl config\n```\n\n## Dependencies\n\n| Package                             | Purpose                     |\n| ----------------------------------- | --------------------------- |\n| `github.com/ktr0731/go-fuzzyfinder` | Interactive fuzzy selection |\n| `github.com/fatih/color`            | Terminal color output       |\n\n## License\n\nMIT — see [LICENSE](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhanymamdouh82%2Fcontctrl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhanymamdouh82%2Fcontctrl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhanymamdouh82%2Fcontctrl/lists"}