March 2017
Beginner to intermediate
925 pages
18h 11m
English
After enabling the Docker daemon remote API, we can do all image-related operations through a client. To get a better understanding of the APIs, let's use curl to connect to the remote daemon and do some image-related operations.
Configure the Docker daemon and allow remote access, as explained in the previous recipe.
In this recipe, we'll look at a few image operations as follows:
GET /images/json
Here is an example of the preceding syntax:
$ curl http://dockerhost.example.com:2375/images/json

POST ...Read now
Unlock full access