-
Notifications
You must be signed in to change notification settings - Fork 5.3k
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
publish images for compose v2 to dockerhub #8871
Comments
That’s a good point, thanks for raising it! |
Would be good for grabbing the binary in our own images (the same way the builds-bin ones are used) |
as a CLI plugin, why not just get compose bundled into https://hub.docker.com/_/docker ? |
@ndeloof it's possible, but currently other plugins (like buildx) aren't bundled either |
@ndeloof The docs for that image don't mention |
I mean the |
The |
@thaJeztah sure, but that's just publisher decision to do so. Could also write Dockerfile so the image includes all released CLI plugins, right? |
+1 |
Is there any blocker for this at the moment? |
+1 from me as well. Currently I am adding Compose v2 to the docker image with my own Dockerfile and use the resulting image as a replacement for the original docker image for docker-in-docker builds on GitLab CI/CD pipelines. |
Please push the image to Docker Hub now! |
Now that Docker Compose V2 is GA, could new Docker Images be pushed? |
Compose v2 is included in |
🎉 > docker pull docker
Using default tag: latest
latest: Pulling from library/docker
9981e73032c8: Already exists
77b8a1a2bc33: Pull complete
fa25d67de920: Pull complete
f0bace62412b: Pull complete
0d8b8a1b3f8c: Pull complete
ddd73b574414: Pull complete
d1491e487ee1: Pull complete
b7428344a1d2: Pull complete
cf19d592fc22: Pull complete
Digest: sha256:d11ece2878a6f8efbced93964e6ae22aa21721bc0efd9ef2e7e28685859d49d9
Status: Downloaded newer image for docker:latest
docker.io/library/docker:latest
> docker run --rm docker docker compose version
Docker Compose version v2.5.0 |
Hi Team with the release of and IMHO it is possible to always get latest compose with image of
Sorry for my poor English |
the image on docker hub is still at v1.29.2
could we publish the latest v2 images to dockerhub ?
It's more convenient for me to use the
docker/compose
image to run compose commands than downloading the compose binaries and it's also easier to keep updated with the latest docker compose versionFor example I use the compose image to deploy a compose-yml
$ docker container run --rm \ -v /var/run/docker.sock:/var/run/docker.sock \ -v $PWD/compose.yml:/srv/compose.yml \ docker/compose:1.29.2 \ -f /srv/compose.yml up -d
It's so convenient that there is no need to find and download the latest binary of docker-compose and deploy it to the local machine and it's so easy to keep updated by just updating the image version
The text was updated successfully, but these errors were encountered: