Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use docker to realize daemon interaction in golang

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article will explain in detail how to use docker to achieve daemon interaction in golang. The content of the article is of high quality, so the editor shares it for you as a reference. I hope you will have some understanding of the relevant knowledge after reading this article.

The development language golang uses unix domain socket to interact with the docker daemon to query the list of images

Package main

Import ("fmt"net"io/ioutil"encoding/json")

Type Image struct {Created uint64 Id string ParentId string RepoTags [] string Size uint64 VirtualSize uint64}

Func main () {addr: = net.UnixAddr {"/ var/run/docker.sock", "unix"} conn, err: = net.DialUnix ("unix", nil, & addr) if err! = nil {panic (err)}

_, err = conn.Write ([] byte ("GET / images/json HTTP/1.0\ r\ n\ r\ n\ n\ n")) if err! = nil {panic (err)} result, err_conn: = ioutil.ReadAll (conn) if err_conn! = nil {panic (err_conn)} body: = getBody (result [:]) var images [] Imageerr_js: = json.Unmarshal (body & images) if err_js! = nil {panic (err_js)} fmt.Println ("len of images:", len (images)) fmt.Println ("image.Id:", images [0] .ID)

}

Func getBody (result [] byte) (body [] byte) {for I: = 0; I

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report