Docker API
DOCKER_OPTS="-H=tcp://0.0.0.0:2375 -H=unix:///var/run/docker.sock"
docker info
http://127.0.0.1:2375/info
docker container create redis
curl -X POST -H "Content-Type: application/json" \
http://127.0.0.1:2375/containers/create \
-d '{
"Image": "redis"
}'
$ docker container ls -a -n 1 -s
$ curl http://127.0.0.1:2375/containers/json\?all\=1\&limit\=1\&size\=1
$ curl -X POST -H "Content-Type: application/json" \
http://127.0.0.1:2375/containers/create?name=test_nginx \
-d '{
"Image": "nginx",
"HostConfig": {
"Binds": ["/home/shiyanlou/data:/data"],
"PortBindings": {"80/tcp": [{"HostPort": "81"}]}
}
}'
docker image ls
http://127.0.0.1:2375/images/json
$ curl -X POST http://127.0.0.1:2375/images/create\?fromImage\=busybox:ubuntu-14.04
curl -X DELETE http://127.0.0.1:2375/images/busybox
POST /volumes/create
GET /volumes
DELETE /volumes/(name)
GET /networks
POST /networks/create
POST /networks/(id)/connect
curl -X POST -H "Content-Type: application/json" http://127.0.0.1:2375/networks/shiyanlou/connect -d '{"Container": "e132d"}'
DELETE /networks/(id)