Skip to content

Commit 69681a9

Browse files
committed
Update systemd image tag formats in workflow and documentation
1 parent a124dc1 commit 69681a9

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
build-args: |
6262
UBUNTU_VERSION=${{ matrix.ubuntu_version }}
6363
tags: |
64-
cruizba/ubuntu-dind:${{ matrix.ubuntu_name }}-${{ env.CURRENT_VERSION }}-systemd
65-
cruizba/ubuntu-dind:${{ matrix.ubuntu_name }}-${{ env.CURRENT_VERSION }}-systemd-r${{ env.BUILD_NUMBER }}
64+
cruizba/ubuntu-dind:${{ matrix.ubuntu_name }}-systemd-${{ env.CURRENT_VERSION }}
65+
cruizba/ubuntu-dind:${{ matrix.ubuntu_name }}-systemd-${{ env.CURRENT_VERSION }}-r${{ env.BUILD_NUMBER }}
6666
cruizba/ubuntu-dind:${{ matrix.ubuntu_name }}-systemd-latest
6767
${{ matrix.ubuntu_version == env.LATEST_UBUNTU_VERSION && 'cruizba/ubuntu-dind:systemd-latest' || '' }}

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,9 @@ cruizba/ubuntu-dind:jammy-<docker-version>
187187
cruizba/ubuntu-dind:noble-<docker-version>
188188

189189
# Systemd images
190-
cruizba/ubuntu-dind:focal-<docker-version>-systemd
191-
cruizba/ubuntu-dind:jammy-<docker-version>-systemd
192-
cruizba/ubuntu-dind:noble-<docker-version>-systemd
190+
cruizba/ubuntu-dind:focal-systemd-<docker-version>
191+
cruizba/ubuntu-dind:jammy-systemd-<docker-version>
192+
cruizba/ubuntu-dind:noble-systemd-<docker-version>
193193
```
194194

195195
### Fixed images and revision
@@ -201,9 +201,9 @@ cruizba/ubuntu-dind:jammy-<docker-version>-r<revision>
201201
cruizba/ubuntu-dind:noble-<docker-version>-r<revision>
202202

203203
# Systemd images
204-
cruizba/ubuntu-dind:focal-<docker-version>-systemd-r<revision>
205-
cruizba/ubuntu-dind:jammy-<docker-version>-systemd-r<revision>
206-
cruizba/ubuntu-dind:noble-<docker-version>-systemd-r<revision>
204+
cruizba/ubuntu-dind:focal-systemd-<docker-version>-r<revision>
205+
cruizba/ubuntu-dind:jammy-systemd-<docker-version>-r<revision>
206+
cruizba/ubuntu-dind:noble-systemd-<docker-version>-r<revision>
207207
```
208208

209209
### Latest Images per Ubuntu version:

create_image.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ build_systemd_image() {
3737

3838
docker build \
3939
--build-arg UBUNTU_VERSION=${ubuntu_version} \
40-
-t cruizba/ubuntu-dind:${ubuntu_name}-${DOCKER_VERSION}-systemd \
41-
-t cruizba/ubuntu-dind:${ubuntu_name}-${DOCKER_VERSION}-systemd-r${BUILD_NUMBER} \
40+
-t cruizba/ubuntu-dind:${ubuntu_name}-systemd-${DOCKER_VERSION} \
41+
-t cruizba/ubuntu-dind:${ubuntu_name}-systemd-${DOCKER_VERSION}-r${BUILD_NUMBER} \
4242
-t cruizba/ubuntu-dind:${ubuntu_name}-systemd-latest \
4343
-f Dockerfile.systemd .
4444

0 commit comments

Comments
 (0)