We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab00dbd commit 09717b7Copy full SHA for 09717b7
README.md
@@ -96,16 +96,15 @@ $ docker buildx bake image-all
96
Following platforms for this image are available:
97
98
```
99
-$ docker run --rm mplatform/mquery librenms/librenms:latest
100
-Image: librenms/librenms:latest
101
- * Manifest List: Yes
102
- * Supported platforms:
103
- - linux/amd64
104
- - linux/arm/v7
105
- - linux/arm64
106
- - linux/386
107
- - linux/ppc64le
108
- - linux/s390x
+$ docker buildx imagetools inspect librenms/librenms --format "{{json .Manifest}}" | \
+ jq -r '.manifests[] | select(.platform.os != null and .platform.os != "unknown") | .platform | "\(.os)/\(.architecture)\(if .variant then "/" + .variant else "" end)"'
+
+linux/386
+linux/amd64
+linux/arm/v7
+linux/arm64
+linux/ppc64le
+linux/s390x
109
110
111
## Environment variables
0 commit comments