{"id":46868456,"url":"https://github.com/caiopizzol/moor","last_synced_at":"2026-05-27T01:04:43.178Z","repository":{"id":341652839,"uuid":"1170964932","full_name":"caiopizzol/moor","owner":"caiopizzol","description":"Self-hosted Docker management - like Coolify, but simpler","archived":false,"fork":false,"pushed_at":"2026-05-23T01:37:31.000Z","size":471,"stargazers_count":2,"open_issues_count":7,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-23T03:32:35.369Z","etag":null,"topics":["containers","coolify-alternative","deployment","devops","docker","paas","self-hosted"],"latest_commit_sha":null,"homepage":"https://moor.sh","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/caiopizzol.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-03-02T18:13:55.000Z","updated_at":"2026-05-23T01:32:49.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/caiopizzol/moor","commit_stats":null,"previous_names":["caiopizzol/moor"],"tags_count":120,"template":false,"template_full_name":null,"purl":"pkg:github/caiopizzol/moor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/caiopizzol%2Fmoor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/caiopizzol%2Fmoor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/caiopizzol%2Fmoor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/caiopizzol%2Fmoor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/caiopizzol","download_url":"https://codeload.github.com/caiopizzol/moor/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/caiopizzol%2Fmoor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33545459,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"ssl_error","status_checked_at":"2026-05-26T15:22:15.568Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["containers","coolify-alternative","deployment","devops","docker","paas","self-hosted"],"created_at":"2026-03-10T19:03:07.269Z","updated_at":"2026-05-27T01:04:43.139Z","avatar_url":"https://github.com/caiopizzol.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# \u003cimg src=\"https://github.com/user-attachments/assets/a042df26-2839-415a-b38b-f0e969f4068c\" width=\"32\" height=\"32\" alt=\"moor\" /\u003e moor\n\n[![GitHub release](https://img.shields.io/github/v/release/caiopizzol/moor?label=version)](https://github.com/caiopizzol/moor/releases)\n\nSelf-hosted Docker control panel for a single server. Build, deploy, and manage containers with cron, logs, and a web terminal.\n\n\u003cimg width=\"1063\" height=\"698\" alt=\"image\" src=\"https://github.com/user-attachments/assets/4b47d9ba-817f-47a4-bee5-ce35a45ea410\" /\u003e\n\n## What it does\n\n- Build Docker images from GitHub repos\n- Start, stop, restart, and rebuild containers\n- Stream build output and container logs in real time\n- Web terminal into running containers\n- Schedule cron jobs inside containers\n- Manage environment variables per project\n- Route custom domains to containers with HTTPS\n- CLI and MCP server for AI agent integration\n\n## Prerequisites\n\nDocker Engine 25.0+ with the Compose v2 plugin. Install from \u003chttps://docs.docker.com/engine/install/\u003e.\n\n## Quick start\n\n```bash\nmkdir -p moor \u0026\u0026 cd moor\ncurl -fsSL moor.sh/install | sh\ndocker compose up -d\n```\n\nThe installer writes `docker-compose.yml` and a random `MOOR_INITIAL_PASSWORD` in `.env` into the current directory. The password is printed at the end of the install output - save it for the first login.\n\n## First login\n\nMoor's admin is bound to `127.0.0.1:3000` by default (Caddy on 80/443 serves only project domains you add later). Open an SSH tunnel from your laptop:\n\n```bash\nssh -L 8080:127.0.0.1:3000 your-server\n```\n\nThen open `http://localhost:8080` and log in with the password from `.env`.\n\n\u003e **Trust boundary.** Moor mounts `/var/run/docker.sock`. Anyone with moor admin access or a valid `MOOR_API_KEY` effectively controls the host. Treat both like SSH access.\n\n## Docs\n\n- [Self-hosting guide](docs/self-hosting.md) - first boot, admin domain, API keys, project ports, Docker socket\n- [`@moor-sh/cli`](packages/cli) - command-line interface\n- [`@moor-sh/mcp`](packages/mcp) - MCP server for AI agents\n\n## CLI\n\n```bash\nbunx @moor-sh/cli status   # one-shot\nbun add -g @moor-sh/cli    # or install globally; then `moor status`\n```\n\nReads `MOOR_URL` and `MOOR_API_KEY` from the environment. See [`packages/cli/README.md`](packages/cli/README.md) for the full command list.\n\n## MCP server\n\n```bash\nbunx @moor-sh/cli mcp config --client claude   # or --client claude-code / --client codex\n```\n\nPrints a ready-to-paste config snippet for Claude Code or Codex that wires `@moor-sh/mcp` into the client. See [`packages/mcp/README.md`](packages/mcp/README.md) for the full setup walkthrough.\n\n## Development\n\n```bash\nbun install\nbun run dev:api   # API with hot reload\nbun run dev:web   # Vite dev server\n```\n\n## Stack\n\nBun, SQLite, React, Vite, Docker Engine API (Unix socket).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcaiopizzol%2Fmoor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcaiopizzol%2Fmoor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcaiopizzol%2Fmoor/lists"}