Add basic README

This commit is contained in:
Solomon Hykes 2014-05-01 16:21:14 -07:00
parent f132e3fb03
commit ca7c1fbf49
1 changed files with 18 additions and 0 deletions

18
README.md Normal file
View File

@ -0,0 +1,18 @@
# Swarmd
## Control a distributed system with the Docker API
`swarmd` is a simple daemon which can control all machines in your distributed
system using a variety of backend adaptors, and exposes it on a single, unified endpoint.
swarmd uses the standard Docker API as its frontend, which means any tool which speaks
Docker can control swarmd transparently: dokku, flynn, deis, docker-ui, shipyard, fleet,
mesos... and of course the Docker client itself.
Usage example:
```
./swarmd tcp://localhost:4242 &
docker -H tcp://localhost:4242 info
```