例如:查詢正在運行的容器列表,HTTP 方式以下:java
$ curl --unix-socket /var/run/docker.sock http:/v1.24/containers/json [{ "Id":"ae63e8b89a26f01f6b4b2c9a7817c31a1b6196acf560f66586fbc8809ffcd772", "Names":["/tender_wing"], "Image":"bfirsh/reticulate-splines", ... }]
在本機執行以下命令git
curl -v --unix-socket /var/run/docker.sock http:/v1.24/containers/json
一、引入 UnixSocket 工具包github
<dependency> <groupId>com.github.jnr</groupId> <artifactId>jnr-unixsocket</artifactId> <version>0.18</version> </dependency>
二、測試代碼docker
public static void main(String[] args) { // 創建 Unix Socket 鏈接 File sockFile = new File("/var/run/docker.sock"); UnixSocketAddress address = new UnixSocketAddress(sockFile); UnixSocketChannel channel = UnixSocketChannel.open(address); UnixSocket unixSocket = new UnixSocket(channel); // 調用 Docker API PrintWriter w = new PrintWriter(unixSocket.getOutputStream()); w.println("GET /v1.24/containers/json HTTP/1.1"); w.println("Host: http"); w.println("Accept: */*"); w.println(""); w.flush(); // 關閉 Output,不然會致使下面的 read 操做一直阻塞 unixSocket.shutdownOutput(); // 獲取返回結果 System.out.println("---- Docker Response ----"); BufferedReader br = new BufferedReader(new InputStreamReader(unixSocket.getInputStream())); String line; while ((line = br.readLine()) != null){ System.out.println(line); } unixSocket.close(); }
本文由博客一文多發平臺 OpenWrite 發佈!