43 lines
1.1 KiB
V
43 lines
1.1 KiB
V
module docker
|
|
|
|
import net.http { Method }
|
|
import types { Image }
|
|
|
|
pub fn (mut d DockerConn) image_inspect(image string) !Image {
|
|
d.send_request(.get, '/images/$image/json')!
|
|
|
|
data := d.read_json_response<Image>()!
|
|
|
|
return data
|
|
}
|
|
|
|
// pull_image pulls the given image:tag.
|
|
pub fn (mut d DockerConn) pull_image(image string, tag string) ! {
|
|
d.send_request(Method.post, '/images/create?fromImage=$image&tag=$tag')!
|
|
d.read_response_head()!
|
|
d.check_error()!
|
|
|
|
// Keep reading the body until the pull has completed
|
|
mut body := d.get_chunked_response_reader()
|
|
|
|
mut buf := []u8{len: 1024}
|
|
|
|
for {
|
|
body.read(mut buf) or { break }
|
|
}
|
|
}
|
|
|
|
// create_image_from_container creates a new image from a container.
|
|
pub fn (mut d DockerConn) create_image_from_container(id string, repo string, tag string) !Image {
|
|
d.send_request(.post, '/commit?container=$id&repo=$repo&tag=$tag')!
|
|
data := d.read_json_response<Image>()!
|
|
|
|
return data
|
|
}
|
|
|
|
// remove_image removes the image with the given id.
|
|
pub fn (mut d DockerConn) remove_image(id string) ! {
|
|
d.send_request(.delete, '/images/$id')!
|
|
d.read_response()!
|
|
}
|