Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 020_advanced/050_networks/docker-compose.context.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "2"

services:
dood:
image: docker:27.3.1
image: docker:28.3.2
command: [ "sh", "-c", "while true; do sleep 5; done" ]
volumes:
- /var/run/docker.sock:/var/run/docker.sock
2 changes: 1 addition & 1 deletion 020_advanced/100_pod_with_docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
image: alpine:3.20.3
command: [ "sh", "-c", "while true; do sleep 5; done" ]
dind:
image: docker:27.3.1-dind
image: docker:28.3.2-dind
command: [ "dockerd", "--host", "tcp://127.0.0.1:2375" ]
privileged: true
network_mode: service:pod
Expand Down
2 changes: 1 addition & 1 deletion 020_advanced/160_dockerfile/parallelization/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker:27.3.1 AS base
FROM docker:28.3.2 AS base
RUN apk add --update-cache --no-cache \
git \
curl \
Expand Down
4 changes: 2 additions & 2 deletions 020_advanced/190_image_build_optimization/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ stages:
- promote

services:
- docker:27.3.1-dind
- docker:28.3.2-dind

default:
image: docker:27.3.1
image: docker:28.3.2

variables:
DOCKER_BUILDKIT: 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ stages:
- build

services:
- docker:27.3.1-dind
- docker:28.3.2-dind

default:
image: docker:27.3.1
image: docker:28.3.2

variables:
DOCKER_BUILDKIT: 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ stages:
- promote

services:
- docker:27.3.1-dind
- docker:28.3.2-dind

default:
image: docker:27.3.1
image: docker:28.3.2

variables:
DOCKER_BUILDKIT: 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ stages:
- promote

services:
- docker:27.3.1-dind
- docker:28.3.2-dind

default:
image: docker:27.3.1
image: docker:28.3.2

variables:
DOCKER_BUILDKIT: 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ stages:
- promote

services:
- docker:27.3.1-dind
- docker:28.3.2-dind

default:
image: docker:27.3.1
image: docker:28.3.2

variables:
DOCKER_BUILDKIT: 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ stages:
- promote

services:
- docker:27.3.1-dind
- docker:28.3.2-dind

default:
image: docker:27.3.1
image: docker:28.3.2

variables:
DOCKER_BUILDKIT: 1
Expand Down
2 changes: 1 addition & 1 deletion 080_ci_cd/01_introduction/.drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pipeline:
- java HelloWorld

docker:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
Expand Down
4 changes: 2 additions & 2 deletions 080_ci_cd/02_components/.drone.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
pipeline:

frontend:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
- docker build --tag frontend frontend

backend:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
Expand Down
4 changes: 2 additions & 2 deletions 080_ci_cd/03_base_derived/.drone.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
pipeline:

base:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
- docker build --tag registry:5000/groot/base .
- docker push registry:5000/groot/base

derived:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
Expand Down
2 changes: 1 addition & 1 deletion 080_ci_cd/04_dependencies/backend/.drone.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pipeline:
build:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
Expand Down
2 changes: 1 addition & 1 deletion 080_ci_cd/04_dependencies/base/.drone.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pipeline:
build:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
Expand Down
2 changes: 1 addition & 1 deletion 080_ci_cd/04_dependencies/frontenv/.drone.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pipeline:
build:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
Expand Down
2 changes: 1 addition & 1 deletion 080_ci_cd/05_fan-in/fan-in/.drone.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pipeline:
fanin:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
Expand Down
2 changes: 1 addition & 1 deletion 080_ci_cd/06_trigger/backend/.drone.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pipeline:
build:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
Expand Down
2 changes: 1 addition & 1 deletion 080_ci_cd/06_trigger/base/.drone.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pipeline:
build:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
Expand Down
2 changes: 1 addition & 1 deletion 080_ci_cd/06_trigger/frontend/.drone.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pipeline:
build:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
Expand Down
2 changes: 1 addition & 1 deletion 080_ci_cd/08_package/package/.drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pipeline:
secrets: [ WEBDAV_USER, WEBDAV_PASS ]

docker:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
Expand Down
8 changes: 4 additions & 4 deletions 080_ci_cd/09_testing/.drone.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
pipeline:

build:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
- docker build --tag registry:5000/groot/testing .
- docker push registry:5000/groot/testing

prepare:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
- docker ps --quiet --filter "name=testcont" | xargs -r docker rm -f

test:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
Expand All @@ -26,7 +26,7 @@ pipeline:
- docker rm -f testcont

clean:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
Expand Down
10 changes: 5 additions & 5 deletions 080_ci_cd/10_tagging/.drone.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pipeline:

build:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
Expand All @@ -10,14 +10,14 @@ pipeline:
- docker push registry:5000/groot/testing:dev

prepare:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
- docker ps --quiet --filter "name=testcont" | xargs -r docker rm -f

test:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
Expand All @@ -27,7 +27,7 @@ pipeline:
- docker rm -f testcont

clean:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
Expand All @@ -36,7 +36,7 @@ pipeline:
status: [ failure ]

publish:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
Expand Down
6 changes: 3 additions & 3 deletions 080_ci_cd/11_parameters/hello-world-docker/.drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pipeline:
secrets: [ WEBDAV_USER, WEBDAV_PASS ]

build:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
Expand All @@ -17,14 +17,14 @@ pipeline:
- docker push registry:5000/${CI_REPO_NAME}:dev

test:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
- docker run --rm registry:5000/${CI_REPO_NAME}:${CI_BUILD_NUMBER} test -f /tmp/testing

publish:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
Expand Down
2 changes: 1 addition & 1 deletion 080_ci_cd/12_registry/.drone.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pipeline:

docker:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
Expand Down
2 changes: 1 addition & 1 deletion 080_ci_cd/tools/.drone.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pipeline:
build:
image: docker:27.3.1
image: docker:28.3.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
Expand Down
2 changes: 1 addition & 1 deletion 110_ecosystem/reverse_proxy/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ services:
traefik.http.routers.registry.entrypoints: http

dind:
image: docker:27.3.1-dind
image: docker:28.3.2-dind
privileged: true
network_mode: service:registry

Expand Down
4 changes: 2 additions & 2 deletions 160_gitlab_ci/999_final/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,12 @@ pages:
- public

package:
image: docker:28.1.1
image: docker:28.3.2
stage: package
extends:
- .run-on-push-to-default-branch
services:
- name: docker:28.1.1-dind
- name: docker:28.3.2-dind
command: [ "dockerd", "--host", "tcp://0.0.0.0:2375" ]
variables:
DOCKER_HOST: tcp://docker:2375
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/kind-ingress/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ curl --silent --show-error --location --fail \
cloud-provider-kind
EOF

FROM docker:28.0.0-cli
FROM docker:28.3.2-cli
COPY --from=cpk /usr/local/bin/cloud-provider-kind /usr/local/bin/
ENTRYPOINT ["/usr/local/bin/cloud-provider-kind"]