{"id":37157452,"url":"https://github.com/deis/swarm","last_synced_at":"2026-01-14T18:46:48.319Z","repository":{"id":30920653,"uuid":"34478556","full_name":"deis/swarm","owner":"deis","description":"Swarm: a Docker-native clustering system","archived":false,"fork":true,"pushed_at":"2015-05-09T00:39:18.000Z","size":5117,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":21,"default_branch":"nodefailover","last_synced_at":"2024-06-20T16:44:32.747Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"docker-archive/classicswarm","license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/deis.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}},"created_at":"2015-04-23T20:01:55.000Z","updated_at":"2021-09-26T11:02:21.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/deis/swarm","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/deis/swarm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deis%2Fswarm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deis%2Fswarm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deis%2Fswarm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deis%2Fswarm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deis","download_url":"https://codeload.github.com/deis/swarm/tar.gz/refs/heads/nodefailover","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deis%2Fswarm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28430894,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T16:38:47.836Z","status":"ssl_error","status_checked_at":"2026-01-14T16:34:59.695Z","response_time":107,"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":[],"created_at":"2026-01-14T18:46:46.942Z","updated_at":"2026-01-14T18:46:48.313Z","avatar_url":"https://github.com/deis.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Swarm: a Docker-native clustering system\n\n[![GoDoc](https://godoc.org/github.com/docker/swarm?status.png)](https://godoc.org/github.com/docker/swarm)\n[![Build Status](https://travis-ci.org/docker/swarm.svg?branch=master)](https://travis-ci.org/docker/swarm)\n[![Coverage Status](https://coveralls.io/repos/docker/swarm/badge.svg)](https://coveralls.io/r/docker/swarm)\n\n![Docker Swarm Logo](logo.png?raw=true \"Docker Swarm Logo\")\n\nDocker Swarm is native clustering for Docker. It turns a pool of Docker hosts\ninto a single, virtual host.\n\nSwarm serves the standard Docker API, so any tool which already communicates\nwith a Docker daemon can use Swarm to transparently scale to multiple hosts:\nDokku, Compose, Krane, Flynn, Deis, DockerUI, Shipyard, Drone, Jenkins... and,\nof course, the Docker client itself.\n\nLike other Docker projects, Swarm follows the \"batteries included but removable\"\nprinciple. It ships with a set of simple scheduling backends out of the box, and as\ninitial development settles, an API will be developed to enable pluggable backends.\nThe goal is to provide a smooth out-of-the-box experience for simple use cases, and\nallow swapping in more powerful backends, like Mesos, for large scale production\ndeployments.\n\n## Installation and documentation\n\nFull documentation [is available here](http://docs.docker.com/swarm/).\n\n## Development installation\n\nYou can download and install from source instead of using the Docker\nimage. Ensure you have golang, godep and the git client installed.\n\n**For example, on Ubuntu you'd run:**\n\n```bash\n$ apt-get install golang git\n$ go get github.com/tools/godep\n```\n\nYou may need to set `$GOPATH`, e.g `mkdir ~/gocode; export GOPATH=~/gocode`.\n\n**For example, on Mac OS X you'd run:**\n\n```bash\n$ brew install go\n$ export GOPATH=~/go\n$ export PATH=$PATH:~/go/bin\n$ go get github.com/tools/godep\n```\n\nThen install the `swarm` binary:\n\n```bash\n$ mkdir -p $GOPATH/src/github.com/docker/\n$ cd $GOPATH/src/github.com/docker/\n$ git clone https://github.com/docker/swarm\n$ cd swarm\n$ godep go install .\n```\n\nFrom here, you can follow the instructions [in the main documentation](http://docs.docker.com/swarm/),\nreplacing `docker run swarm` with just `swarm`.\n\n## Participating\n\nWe welcome pull requests and patches; come say hi on IRC, #docker-swarm on freenode.\n\nOur planning process and release cycle are detailed on the [wiki](https://github.com/docker/swarm/wiki)\n\n## Creators\n\n**Andrea Luzzardi**\n\n- \u003chttp://twitter.com/aluzzardi\u003e\n- \u003chttp://github.com/aluzzardi\u003e\n\n**Victor Vieux**\n\n- \u003chttp://twitter.com/vieux\u003e\n- \u003chttp://github.com/vieux\u003e\n\n## Copyright and license\n\nCode and documentation copyright 2014-2015 Docker, inc. Code released under the\nApache 2.0 license.\n\nDocs released under Creative commons.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeis%2Fswarm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeis%2Fswarm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeis%2Fswarm/lists"}