compose: docker/compose:latest not found

https://hub.docker.com/r/docker/compose/

States to install you do:

docker pull docker/compose

The latest tag does not exist so this is incorrect.

km@Karls-MBP ~ $ docker pull docker/compose
Using default tag: latest
Error response from daemon: manifest for docker/compose:latest not found

About this issue

  • Original URL
  • State: closed
  • Created 6 years ago
  • Comments: 15

Most upvoted comments

Also agree with @bittner , when will it be implemented?

docker/compose has no latest tag, so you must use with exact tag resolution:

$ docker pull docker/compose:1.19.0

1.19.0: Pulling from docker/compose
605ce1bd3f31: Already exists
ed764f565fce: Pull complete
.....

@shin- Can’t we simply add a latest to the image on Docker Hub? That shouldn’t be too hard. We use this image with Bitbucket Pipelines, and …

  1. Specifying an exact version (1.19.0) is crying for recurring maintenance (and potential future security issues).
  2. Installing software feels unclean.