{"id":49860872,"url":"https://github.com/mizuchilabs/tetherd","last_synced_at":"2026-06-12T10:00:14.563Z","repository":{"id":355149811,"uuid":"1216355156","full_name":"MizuchiLabs/tetherd","owner":"MizuchiLabs","description":"The lightweight agent for the Tether ecosystem.","archived":false,"fork":false,"pushed_at":"2026-06-05T13:53:56.000Z","size":115,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-05T14:16:33.691Z","etag":null,"topics":["agent","automation","golang","monitoring","traefik"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MizuchiLabs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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},"funding":{"ko_fi":"d34dscene"}},"created_at":"2026-04-20T20:27:07.000Z","updated_at":"2026-06-05T13:54:00.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/MizuchiLabs/tetherd","commit_stats":null,"previous_names":["mizuchilabs/tetherd"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/MizuchiLabs/tetherd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MizuchiLabs%2Ftetherd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MizuchiLabs%2Ftetherd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MizuchiLabs%2Ftetherd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MizuchiLabs%2Ftetherd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MizuchiLabs","download_url":"https://codeload.github.com/MizuchiLabs/tetherd/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MizuchiLabs%2Ftetherd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34238714,"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":"online","status_checked_at":"2026-06-12T02:00:06.859Z","response_time":109,"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":["agent","automation","golang","monitoring","traefik"],"created_at":"2026-05-14T21:39:12.403Z","updated_at":"2026-06-12T10:00:14.531Z","avatar_url":"https://github.com/MizuchiLabs.png","language":"Go","funding_links":["https://ko-fi.com/d34dscene"],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n\u003cimg src=\"./.github/logo.svg\" width=\"80\"\u003e\n\u003cbr\u003e\u003cbr\u003e\n\u003cimg alt=\"GitHub Tag\" src=\"https://img.shields.io/github/v/tag/MizuchiLabs/tetherd?label=Version\"\u003e\n\u003cimg alt=\"GitHub License\" src=\"https://img.shields.io/github/license/MizuchiLabs/tetherd\"\u003e\n\u003cimg alt=\"GitHub Issues or Pull Requests\" src=\"https://img.shields.io/github/issues/MizuchiLabs/tetherd\"\u003e\n\u003c/p\u003e\n\n# Tetherd\n\n**Tetherd** is the lightweight agent that runs on your worker servers. It watches your Docker containers and tells the central [Tether](https://github.com/MizuchiLabs/tether) server where they are so Traefik can find them.\n\n## How it Works\n\n1. You run Tetherd on every server where you have Docker containers.\n2. Tetherd looks at your containers' labels (like `traefik.http.routers.myapp.rule`).\n3. It automatically detects the server's IP address.\n4. It sends this information to your central **Tether** server.\n\nThis allows a single Traefik instance on a different machine to route traffic to these containers seamlessly.\n\n## Quick Start\n\nRun Tetherd on your worker server:\n\n```yaml\nservices:\n  tetherd:\n    image: ghcr.io/mizuchilabs/tetherd:latest\n    network_mode: host # Highly recommended for IP detection\n    volumes:\n      - /var/run/docker.sock:/var/run/docker.sock:ro\n    environment:\n      - TETHERD_SERVER=http://\u003cTETHER_SERVER_IP\u003e:3000\n      - TETHERD_TOKEN=your-secret-password\n    restart: unless-stopped\n```\n\n## Deploying an App\n\nWhen you deploy an app on this worker server, just add standard Traefik labels. Tetherd handles the rest:\n\n```yaml\nservices:\n  my-app:\n    image: nginx\n    ports:\n      - \"8080:80\"\n    labels:\n      - \"traefik.enable=true\"\n      - \"traefik.http.routers.my-app.rule=Host(`my-app.com`)\"\n```\n\nTetherd will tell the central server: _\"Send traffic for `my-app.com` to `http://\u003cTHIS_SERVER_IP\u003e:8080`\"_.\n\n## Configuration\n\n| Env Var               | Flag         | Default                 | Description                                     |\n| --------------------- | ------------ | ----------------------- | ----------------------------------------------- |\n| `TETHERD_SERVER`      | `--server`   | `http://127.0.0.1:3000` | URL of the central Tether server.               |\n| `TETHERD_TOKEN`       | `--token`    |                         | **Required**: Token matching the Tether server. |\n| `TETHERD_HOST_IP`     | `--host-ip`  | _(auto)_                | Manual override for this server's IP.           |\n| `TETHERD_ENVIRONMENT` | `--env`      | `default`               | Group servers into isolated environments.       |\n| `TETHERD_DEBUG`       | `--debug`    | `false`                 | Enable detailed logging.                        |\n\n---\n\n**Requirement:** You need a [Tether](https://github.com/MizuchiLabs/tether) server running to collect these updates.\n\n## License\n\nApache 2.0 License - see [LICENSE](LICENSE) for details\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmizuchilabs%2Ftetherd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmizuchilabs%2Ftetherd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmizuchilabs%2Ftetherd/lists"}