Skip to content

Commit 259fac0

Browse files
chore(deps): update docker docker tag to v28
1 parent c5c0d01 commit 259fac0

File tree

27 files changed

+45
-45
lines changed

27 files changed

+45
-45
lines changed

020_advanced/050_networks/docker-compose.context.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "2"
22

33
services:
44
dood:
5-
image: docker:27.3.1
5+
image: docker:28.0.4
66
command: [ "sh", "-c", "while true; do sleep 5; done" ]
77
volumes:
88
- /var/run/docker.sock:/var/run/docker.sock

020_advanced/100_pod_with_docker/docker-compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
image: alpine:3.20.3
55
command: [ "sh", "-c", "while true; do sleep 5; done" ]
66
dind:
7-
image: docker:27.3.1-dind
7+
image: docker:28.0.4-dind
88
command: [ "dockerd", "--host", "tcp://127.0.0.1:2375" ]
99
privileged: true
1010
network_mode: service:pod

020_advanced/160_dockerfile/parallelization/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker:27.3.1 AS base
1+
FROM docker:28.0.4 AS base
22
RUN apk add --update-cache --no-cache \
33
git \
44
curl \

020_advanced/190_image_build_optimization/.gitlab-ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ stages:
55
- promote
66

77
services:
8-
- docker:27.3.1-dind
8+
- docker:28.0.4-dind
99

1010
default:
11-
image: docker:27.3.1
11+
image: docker:28.0.4
1212

1313
variables:
1414
DOCKER_BUILDKIT: 1

020_advanced/190_image_build_optimization/step12/.gitlab-ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ stages:
22
- build
33

44
services:
5-
- docker:27.3.1-dind
5+
- docker:28.0.4-dind
66

77
default:
8-
image: docker:27.3.1
8+
image: docker:28.0.4
99

1010
variables:
1111
DOCKER_BUILDKIT: 1

020_advanced/190_image_build_optimization/step13/.gitlab-ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ stages:
44
- promote
55

66
services:
7-
- docker:27.3.1-dind
7+
- docker:28.0.4-dind
88

99
default:
10-
image: docker:27.3.1
10+
image: docker:28.0.4
1111

1212
variables:
1313
DOCKER_BUILDKIT: 1

020_advanced/190_image_build_optimization/step14/.gitlab-ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ stages:
44
- promote
55

66
services:
7-
- docker:27.3.1-dind
7+
- docker:28.0.4-dind
88

99
default:
10-
image: docker:27.3.1
10+
image: docker:28.0.4
1111

1212
variables:
1313
DOCKER_BUILDKIT: 1

020_advanced/190_image_build_optimization/step15/.gitlab-ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ stages:
55
- promote
66

77
services:
8-
- docker:27.3.1-dind
8+
- docker:28.0.4-dind
99

1010
default:
11-
image: docker:27.3.1
11+
image: docker:28.0.4
1212

1313
variables:
1414
DOCKER_BUILDKIT: 1

020_advanced/190_image_build_optimization/step16/.gitlab-ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ stages:
55
- promote
66

77
services:
8-
- docker:27.3.1-dind
8+
- docker:28.0.4-dind
99

1010
default:
11-
image: docker:27.3.1
11+
image: docker:28.0.4
1212

1313
variables:
1414
DOCKER_BUILDKIT: 1

080_ci_cd/01_introduction/.drone.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pipeline:
88
- java HelloWorld
99

1010
docker:
11-
image: docker:27.3.1
11+
image: docker:28.0.4
1212
volumes:
1313
- /var/run/docker.sock:/var/run/docker.sock
1414
commands:

080_ci_cd/02_components/.drone.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
pipeline:
22

33
frontend:
4-
image: docker:27.3.1
4+
image: docker:28.0.4
55
volumes:
66
- /var/run/docker.sock:/var/run/docker.sock
77
commands:
88
- docker build --tag frontend frontend
99

1010
backend:
11-
image: docker:27.3.1
11+
image: docker:28.0.4
1212
volumes:
1313
- /var/run/docker.sock:/var/run/docker.sock
1414
commands:

080_ci_cd/03_base_derived/.drone.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
pipeline:
22

33
base:
4-
image: docker:27.3.1
4+
image: docker:28.0.4
55
volumes:
66
- /var/run/docker.sock:/var/run/docker.sock
77
commands:
88
- docker build --tag registry:5000/groot/base .
99
- docker push registry:5000/groot/base
1010

1111
derived:
12-
image: docker:27.3.1
12+
image: docker:28.0.4
1313
volumes:
1414
- /var/run/docker.sock:/var/run/docker.sock
1515
commands:

080_ci_cd/04_dependencies/backend/.drone.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pipeline:
22
build:
3-
image: docker:27.3.1
3+
image: docker:28.0.4
44
volumes:
55
- /var/run/docker.sock:/var/run/docker.sock
66
commands:

080_ci_cd/04_dependencies/base/.drone.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pipeline:
22
build:
3-
image: docker:27.3.1
3+
image: docker:28.0.4
44
volumes:
55
- /var/run/docker.sock:/var/run/docker.sock
66
commands:

080_ci_cd/04_dependencies/frontenv/.drone.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pipeline:
22
build:
3-
image: docker:27.3.1
3+
image: docker:28.0.4
44
volumes:
55
- /var/run/docker.sock:/var/run/docker.sock
66
commands:

080_ci_cd/05_fan-in/fan-in/.drone.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pipeline:
22
fanin:
3-
image: docker:27.3.1
3+
image: docker:28.0.4
44
volumes:
55
- /var/run/docker.sock:/var/run/docker.sock
66
commands:

080_ci_cd/06_trigger/backend/.drone.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pipeline:
22
build:
3-
image: docker:27.3.1
3+
image: docker:28.0.4
44
volumes:
55
- /var/run/docker.sock:/var/run/docker.sock
66
commands:

080_ci_cd/06_trigger/base/.drone.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pipeline:
22
build:
3-
image: docker:27.3.1
3+
image: docker:28.0.4
44
volumes:
55
- /var/run/docker.sock:/var/run/docker.sock
66
commands:

080_ci_cd/06_trigger/frontend/.drone.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pipeline:
22
build:
3-
image: docker:27.3.1
3+
image: docker:28.0.4
44
volumes:
55
- /var/run/docker.sock:/var/run/docker.sock
66
commands:

080_ci_cd/08_package/package/.drone.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pipeline:
88
secrets: [ WEBDAV_USER, WEBDAV_PASS ]
99

1010
docker:
11-
image: docker:27.3.1
11+
image: docker:28.0.4
1212
volumes:
1313
- /var/run/docker.sock:/var/run/docker.sock
1414
environment:

080_ci_cd/09_testing/.drone.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
pipeline:
22

33
build:
4-
image: docker:27.3.1
4+
image: docker:28.0.4
55
volumes:
66
- /var/run/docker.sock:/var/run/docker.sock
77
commands:
88
- docker build --tag registry:5000/groot/testing .
99
- docker push registry:5000/groot/testing
1010

1111
prepare:
12-
image: docker:27.3.1
12+
image: docker:28.0.4
1313
volumes:
1414
- /var/run/docker.sock:/var/run/docker.sock
1515
commands:
1616
- docker ps --quiet --filter "name=testcont" | xargs -r docker rm -f
1717

1818
test:
19-
image: docker:27.3.1
19+
image: docker:28.0.4
2020
volumes:
2121
- /var/run/docker.sock:/var/run/docker.sock
2222
commands:
@@ -26,7 +26,7 @@ pipeline:
2626
- docker rm -f testcont
2727

2828
clean:
29-
image: docker:27.3.1
29+
image: docker:28.0.4
3030
volumes:
3131
- /var/run/docker.sock:/var/run/docker.sock
3232
commands:

080_ci_cd/10_tagging/.drone.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pipeline:
22

33
build:
4-
image: docker:27.3.1
4+
image: docker:28.0.4
55
volumes:
66
- /var/run/docker.sock:/var/run/docker.sock
77
commands:
@@ -10,14 +10,14 @@ pipeline:
1010
- docker push registry:5000/groot/testing:dev
1111

1212
prepare:
13-
image: docker:27.3.1
13+
image: docker:28.0.4
1414
volumes:
1515
- /var/run/docker.sock:/var/run/docker.sock
1616
commands:
1717
- docker ps --quiet --filter "name=testcont" | xargs -r docker rm -f
1818

1919
test:
20-
image: docker:27.3.1
20+
image: docker:28.0.4
2121
volumes:
2222
- /var/run/docker.sock:/var/run/docker.sock
2323
commands:
@@ -27,7 +27,7 @@ pipeline:
2727
- docker rm -f testcont
2828

2929
clean:
30-
image: docker:27.3.1
30+
image: docker:28.0.4
3131
volumes:
3232
- /var/run/docker.sock:/var/run/docker.sock
3333
commands:
@@ -36,7 +36,7 @@ pipeline:
3636
status: [ failure ]
3737

3838
publish:
39-
image: docker:27.3.1
39+
image: docker:28.0.4
4040
volumes:
4141
- /var/run/docker.sock:/var/run/docker.sock
4242
commands:

080_ci_cd/11_parameters/hello-world-docker/.drone.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pipeline:
88
secrets: [ WEBDAV_USER, WEBDAV_PASS ]
99

1010
build:
11-
image: docker:27.3.1
11+
image: docker:28.0.4
1212
volumes:
1313
- /var/run/docker.sock:/var/run/docker.sock
1414
commands:
@@ -17,14 +17,14 @@ pipeline:
1717
- docker push registry:5000/${CI_REPO_NAME}:dev
1818

1919
test:
20-
image: docker:27.3.1
20+
image: docker:28.0.4
2121
volumes:
2222
- /var/run/docker.sock:/var/run/docker.sock
2323
commands:
2424
- docker run --rm registry:5000/${CI_REPO_NAME}:${CI_BUILD_NUMBER} test -f /tmp/testing
2525

2626
publish:
27-
image: docker:27.3.1
27+
image: docker:28.0.4
2828
volumes:
2929
- /var/run/docker.sock:/var/run/docker.sock
3030
commands:

080_ci_cd/12_registry/.drone.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pipeline:
22

33
docker:
4-
image: docker:27.3.1
4+
image: docker:28.0.4
55
volumes:
66
- /var/run/docker.sock:/var/run/docker.sock
77
environment:

080_ci_cd/tools/.drone.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pipeline:
22
build:
3-
image: docker:27.3.1
3+
image: docker:28.0.4
44
volumes:
55
- /var/run/docker.sock:/var/run/docker.sock
66
commands:

110_ecosystem/reverse_proxy/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ services:
4444
traefik.http.routers.registry.entrypoints: http
4545

4646
dind:
47-
image: docker:27.3.1-dind
47+
image: docker:28.0.4-dind
4848
privileged: true
4949
network_mode: service:registry
5050

160_gitlab_ci/999_final/.gitlab-ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,12 @@ pages:
121121
- public
122122

123123
package:
124-
image: docker:27.3.1
124+
image: docker:28.0.4
125125
stage: package
126126
extends:
127127
- .run-on-push-to-default-branch
128128
services:
129-
- name: docker:27.3.1-dind
129+
- name: docker:28.0.4-dind
130130
command: [ "dockerd", "--host", "tcp://0.0.0.0:2375" ]
131131
variables:
132132
DOCKER_HOST: tcp://docker:2375

0 commit comments

Comments
 (0)