From 3f1a0d9a8af5e9f852c321b3d46e3adc23319166 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=A0trauch?= Date: Thu, 21 Apr 2022 22:21:56 +0200 Subject: [PATCH] Getting arch back --- containers/docker.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/docker.go b/containers/docker.go index 367adc4..bc2f814 100644 --- a/containers/docker.go +++ b/containers/docker.go @@ -363,8 +363,8 @@ func (d *Driver) Create(name string, image string, volumePath string, HTTPPort i }, &network.NetworkingConfig{}, &specs.Platform{ - // Architecture: "amd64", - // OS: "linux", + Architecture: "amd64", + OS: "linux", }, name, )