Working build example!!

This commit is contained in:
Jef Roosens 2022-02-20 20:26:39 +01:00
parent 5515e2dca5
commit 4f705f5fb5
Signed by untrusted user: Jef Roosens
GPG key ID: 955C0660072F691F
3 changed files with 92 additions and 15 deletions

View file

@ -9,7 +9,35 @@ struct Container {
}
pub fn containers() ?[]Container {
res := get(urllib.parse('/containers/json') ?) ?
res := request('GET', urllib.parse('/containers/json') ?) ?
return json.decode([]Container, res.text) or {}
}
pub struct NewContainer {
image string [json: Image]
entrypoint []string [json: Entrypoint]
cmd []string [json: Cmd]
env []string [json: Env]
}
struct CreatedContainer {
id string [json: Id]
}
pub fn create_container(c &NewContainer) ?string {
res := request_with_json('POST', urllib.parse('/containers/create') ?, c) ?
if res.status_code != 201 {
return error('Failed to create container.')
}
return json.decode(CreatedContainer, res.text) ?.id
}
pub fn start_container(id string) ?bool {
res := request('POST', urllib.parse('/containers/$id/start') ?) ?
println(res)
return res.status_code == 204
}