You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a recommended schema to upgrade buildx and docker engine together ?
At the moment I'm using
# Docker Buildx
# https://github.com/docker/buildx
ARG DOCKER_VERSION
FROM docker/buildx-bin:0.12.0 AS buildx
# Docker Alpine 3.16 based image
# https://hub.docker.com/_/docker
ARG DOCKER_VERSION
# hadolint ignore=DL3006
FROM docker:${DOCKER_VERSION} AS base
where DOCKER_VERSION=24.0.7
everything is working fine. I'm wondering if I upgrade the docker engine what is the mix/max recommended version for each docker engine release.
Is this information available ? Should I always use the latest tag for buildx ? what is the compatibility matrix ?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Is there a recommended schema to upgrade buildx and docker engine together ?
At the moment I'm using
where
DOCKER_VERSION=24.0.7
everything is working fine. I'm wondering if I upgrade the docker engine what is the mix/max recommended version for each docker engine release.
Is this information available ? Should I always use the latest tag for buildx ? what is the compatibility matrix ?
thank you !!!
Beta Was this translation helpful? Give feedback.
All reactions