File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ services:
44 image : ' registry:3'
55
66 engine :
7- image : ' docker:${ENGINE_VERSION:-28 }-dind'
7+ image : ' docker:${ENGINE_VERSION:-29 }-dind'
88 privileged : true
99 command : ['--insecure-registry=registry:5000', '--experimental']
1010 environment :
Original file line number Diff line number Diff line change 22
33# ENGINE_VERSION is the version of the (docker-in-docker) Docker Engine to
44# test against.
5- ARG ENGINE_VERSION=28
5+ ARG ENGINE_VERSION=29
66
77FROM docker:${ENGINE_VERSION}-dind
88
99# the openssh-client update is needed for security reasons when using docker:23.0-dind, currently maintained as an lts by mirantis
1010RUN apk --no-cache add openssl openssh-client openssh-server shadow && \
1111 apk --no-cache upgrade openssl openssh-client openssh-server && \
12- # TODO(krissetto): `groupadd` can be removed once we only test against moby >= v24
13- # see https://github.com/docker-library/docker/pull/470
14- groupadd -f docker && \
1512 useradd --create-home --shell /bin/sh --password $(head -c32 /dev/urandom | base64) penguin && \
1613 usermod -aG docker penguin && \
1714 ssh-keygen -A
You can’t perform that action at this time.
0 commit comments