Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Golang 1.11.3 and 1.10.6 images are not (yet?) multi-arch #253

Closed
thaJeztah opened this issue Dec 14, 2018 · 5 comments
Closed

Golang 1.11.3 and 1.10.6 images are not (yet?) multi-arch #253

thaJeztah opened this issue Dec 14, 2018 · 5 comments

Comments

@thaJeztah
Copy link
Contributor

thaJeztah commented Dec 14, 2018

Looks like the latest 1.11.3 and 1.10.6 image only has amd64;

docker manifest inspect golang:1.11.3
{
   "schemaVersion": 2,
   "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json",
   "manifests": [
      {
         "mediaType": "application/vnd.docker.distribution.manifest.v2+json",
         "size": 1796,
         "digest": "sha256:e03ed489934627bed040325b9796fc1c3e2428ac8de762ad9c985952be95db07",
         "platform": {
            "architecture": "amd64",
            "os": "linux"
         }
      }
   ]
}

docker manifest inspect golang:1.10.6
{
   "schemaVersion": 2,
   "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json",
   "manifests": [
      {
         "mediaType": "application/vnd.docker.distribution.manifest.v2+json",
         "size": 1795,
         "digest": "sha256:af0ffc54ffec0f39288694e1e20f9405e48696b625409459d0957ad5cf59cb9b",
         "platform": {
            "architecture": "amd64",
            "os": "linux"
         }
      }
   ]
}

@tianon @yosifkit

perhaps it's still being built, but wanted to double-check 🤗 moby/moby#38369 (comment)

@thaJeztah thaJeztah changed the title Golang 11.3 images are not (yet?) multi-arch Golang 11.3 and 1.10.6 images are not (yet?) multi-arch Dec 14, 2018
@thaJeztah thaJeztah changed the title Golang 11.3 and 1.10.6 images are not (yet?) multi-arch Golang 1.11.3 and 1.10.6 images are not (yet?) multi-arch Dec 14, 2018
@andrewhsu
Copy link

Looks like stuff is up now:

$ docker manifest inspect golang:1.11.3 | jq '.manifests[].platform'
{
  "architecture": "amd64",
  "os": "linux"
}
{
  "architecture": "arm",
  "os": "linux",
  "variant": "v7"
}
{
  "architecture": "arm64",
  "os": "linux",
  "variant": "v8"
}
{
  "architecture": "386",
  "os": "linux"
}
{
  "architecture": "ppc64le",
  "os": "linux"
}
{
  "architecture": "s390x",
  "os": "linux"
}
{
  "architecture": "amd64",
  "os": "windows",
  "os.version": "10.0.14393.2665"
}
{
  "architecture": "amd64",
  "os": "windows",
  "os.version": "10.0.16299.846"
}
{
  "architecture": "amd64",
  "os": "windows",
  "os.version": "10.0.17134.469"
}
$ docker manifest inspect golang:1.10.6 | jq '.manifests[].platform'
{
  "architecture": "amd64",
  "os": "linux"
}
{
  "architecture": "arm",
  "os": "linux",
  "variant": "v7"
}
{
  "architecture": "arm64",
  "os": "linux",
  "variant": "v8"
}
{
  "architecture": "386",
  "os": "linux"
}
{
  "architecture": "ppc64le",
  "os": "linux"
}
{
  "architecture": "s390x",
  "os": "linux"
}
{
  "architecture": "amd64",
  "os": "windows",
  "os.version": "10.0.14393.2665"
}
{
  "architecture": "amd64",
  "os": "windows",
  "os.version": "10.0.16299.846"
}
{
  "architecture": "amd64",
  "os": "windows",
  "os.version": "10.0.17134.469"
}

@thaJeztah
Copy link
Contributor Author

Perfect! Guess I just wasn't patient enough. Let me close this one 🤗

@tianon
Copy link
Member

tianon commented Dec 14, 2018

Yeah, we need to tweak the way these trigger 😬

@thaJeztah
Copy link
Contributor Author

No worries, glad they appeared in the end ❤️

@rmoriz

This comment has been minimized.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants