mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-10-31 05:52:56 +00:00 
			
		
		
		
	Updated Compose and Docker versions.
Signed-off-by: James McCoy <james@mcy.email>
This commit is contained in:
		| @@ -1,10 +1,10 @@ | ||||
| FROM docker/compose:1.13.0 | ||||
| FROM docker/compose:1.23.2 | ||||
| # because compose requires all sorts of dynamic libs, including glibc, it is much easier to | ||||
| #   add docker client to compose than the reverse | ||||
|  | ||||
| ENV DOCKER_BUCKET get.docker.com | ||||
| ENV DOCKER_VERSION 17.05.0-ce | ||||
| ENV DOCKER_SHA256 340e0b5a009ba70e1b644136b94d13824db0aeb52e09071410f35a95d94316d9 | ||||
| ENV DOCKER_BUCKET download.docker.com | ||||
| ENV DOCKER_VERSION 18.06.3-ce | ||||
| #ENV DOCKER_SHA256 340e0b5a009ba70e1b644136b94d13824db0aeb52e09071410f35a95d94316d9 | ||||
|  | ||||
| # we need docker compose and docker load | ||||
| # also need curl to test availability of docker API | ||||
| @@ -12,8 +12,8 @@ RUN apk add --update curl | ||||
|  | ||||
| # we only need the client | ||||
| RUN set -x \ | ||||
| 	&& curl -fSL "https://${DOCKER_BUCKET}/builds/Linux/x86_64/docker-${DOCKER_VERSION}.tgz" -o docker.tgz \ | ||||
| 	&& echo "${DOCKER_SHA256} *docker.tgz" | sha256sum -c - \ | ||||
| 	&& curl -fSL "https://${DOCKER_BUCKET}/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz" -o docker.tgz \ | ||||
| #	&& echo "${DOCKER_SHA256} *docker.tgz" | sha256sum -c - \ #checksums don't appear to be avaliable so disabled for now. | ||||
| 	&& tar -xzvf docker.tgz \ | ||||
| 	&& mv docker/docker /usr/bin/ \ | ||||
| 	&& rm -rf docker docker.tgz \ | ||||
|   | ||||
		Reference in New Issue
	
	Block a user