[docker]$11_Docker API

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)



发布了78 篇原创文章 · 获赞 0 · 访问量 1424

猜你喜欢

转载自blog.csdn.net/qq_30782921/article/details/101695177
今日推荐