Skip to content

Commit be9cdcd

Browse files
committed
Bump Docker, Docker Compose, and Buildx versions to 28.0.0, v2.33.1, and v0.21.0 respectively
1 parent 408f798 commit be9cdcd

File tree

4 files changed

+10
-14
lines changed

4 files changed

+10
-14
lines changed

.github/workflows/build-and-push-docker-image.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ on:
66
workflow_dispatch:
77

88
env:
9-
CURRENT_VERSION: 27.5.1
10-
BUILD_NUMBER: 1
9+
CURRENT_VERSION: 28.0.0
10+
BUILD_NUMBER: 0
1111
LATEST_UBUNTU_VERSION: "24.04"
1212

1313
jobs:
@@ -28,10 +28,6 @@ jobs:
2828

2929
- name: Set up QEMU
3030
uses: docker/setup-qemu-action@v3
31-
# Temporary workaround for ARM builds
32-
# https://github.com/docker/setup-qemu-action/issues/198
33-
with:
34-
image: tonistiigi/binfmt:qemu-v7.0.0-28
3531

3632
- name: Set up Docker Buildx
3733
uses: docker/setup-buildx-action@v3

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ FROM ubuntu:${UBUNTU_VERSION}
33

44
ARG UBUNTU_VERSION
55
ENV DOCKER_CHANNEL=stable \
6-
DOCKER_VERSION=27.5.1 \
7-
DOCKER_COMPOSE_VERSION=v2.32.4 \
8-
BUILDX_VERSION=v0.20.1 \
6+
DOCKER_VERSION=28.0.0 \
7+
DOCKER_COMPOSE_VERSION=v2.33.1 \
8+
BUILDX_VERSION=v0.21.0 \
99
DEBUG=false
1010

1111
# Install common dependencies

Dockerfile.systemd

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ ARG UBUNTU_VERSION="24.04"
44
FROM ubuntu:${UBUNTU_VERSION}
55

66
ARG UBUNTU_VERSION
7-
ENV DOCKER_VERSION=27.5.1 \
8-
DOCKER_COMPOSE_VERSION=v2.32.4 \
9-
BUILDX_VERSION=v0.20.1
7+
ENV DOCKER_VERSION=28.0.0 \
8+
DOCKER_COMPOSE_VERSION=v2.33.1 \
9+
BUILDX_VERSION=v0.21.0
1010

1111
#
1212
# Systemd installation

create_image.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/bash
22
set -e
33

4-
DOCKER_VERSION="27.5.1"
5-
BUILD_NUMBER="1"
4+
DOCKER_VERSION="28.0.0"
5+
BUILD_NUMBER="0"
66
LATEST_UBUNTU_VERSION="24.04"
77

88
declare -A ubuntu_versions=(

0 commit comments

Comments
 (0)