Release 0.3.0-alpha.2 #185

Merged
Jef Roosens merged 50 commits from release-0.3.0-alpha.2 into main 2022-05-18 07:56:04 +02:00
Showing only changes of commit 3821ed29fd - Show all commits

View file

@ -118,11 +118,7 @@ pub fn build_repo(address string, api_key string, base_image_id string, repo &db
mut data := docker.inspect_container(id) ? mut data := docker.inspect_container(id) ?
// This loop waits until the container has stopped, so we can remove it after // This loop waits until the container has stopped, so we can remove it after
for { for data.state.running {
if !data.state.running {
break
}
time.sleep(1 * time.second) time.sleep(1 * time.second)
data = docker.inspect_container(id) ? data = docker.inspect_container(id) ?