This commit is contained in:
Roberto Alsina 2024-06-29 21:01:28 -03:00
parent 187135be42
commit 17637042b7

View File

@ -18,7 +18,6 @@ module Faaso
# Ensure the faaso-net network exists # Ensure the faaso-net network exists
def self.setup_network def self.setup_network
begin
docker_api = Docr::API.new(Docr::Client.new) docker_api = Docr::API.new(Docr::Client.new)
docker_api.networks.create(Docr::Types::NetworkConfig.new( docker_api.networks.create(Docr::Types::NetworkConfig.new(
name: "faaso-net", name: "faaso-net",
@ -27,7 +26,7 @@ module Faaso
)) ))
rescue ex : Docr::Errors::DockerAPIError rescue ex : Docr::Errors::DockerAPIError
raise ex if ex.status_code != 409 # Network already exists raise ex if ex.status_code != 409 # Network already exists
end
end end
module Commands module Commands
@ -180,7 +179,7 @@ module Faaso
filters: {"name" => [container_name]} filters: {"name" => [container_name]}
) )
(1..5).each { |i| (1..5).each { |_|
break if containers[0].state == "running" break if containers[0].state == "running"
sleep 0.1.seconds sleep 0.1.seconds
} }