Skip to content

Commit e30ce84

Browse files
authored
Merge pull request #6793 from thaJeztah/update_e2e
e2e: use docker v29.x dind as default
2 parents 3d62a7c + c4fd240 commit e30ce84

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

e2e/compose-env.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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:

e2e/testdata/Dockerfile.connhelper-ssh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,13 @@
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

77
FROM 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
1010
RUN 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

0 commit comments

Comments
 (0)