Skip to content

Commit 5a3b708

Browse files
committed
Release 1.0.3 - See CHANGELOG.md
1 parent 4596b1c commit 5a3b708

4 files changed

Lines changed: 24 additions & 18 deletions

File tree

.github/workflows/main.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
name: "PUSH - Build on repository Push"
21
on:
32
push:
43
paths:
@@ -17,18 +16,17 @@ jobs:
1716
strategy:
1817
matrix:
1918
include:
20-
- distro: alpine
21-
distro_variant: 3.22
22-
latest: true
23-
uses: nfrastack/gha/.github/workflows/container-build_and_push.yml@main
19+
- { distro: "alpine", distro_variant: "3.22", latest: "true", arch: "linux/amd64,linux/arm64" }
20+
uses: nfrastack/gha/.github/workflows/container-build_generic.yml@main
2421
with:
25-
platforms: linux/amd64, linux/arm64
26-
base_image: ghcr.io/nfrastack/container-base
22+
base_image: "ghcr.io/nfrastack/container-base"
23+
tag: ${{ matrix.tag || '' }}
2724
distro: ${{ matrix.distro }}
2825
distro_variant: ${{ matrix.distro_variant }}
29-
include_distro_tag: false
30-
include_variant_tag: false
26+
image_variant: ${{ matrix.image_variant || '' }}
3127
latest: ${{ matrix.latest }}
28+
distro_latest: ${{ matrix.distro_latest }}
29+
platforms: ${{ matrix.arch }}
3230
secrets: inherit
3331
cleanup:
3432
needs: [ build ]

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 1.0.3 2025-10-06 <dave at tiredofit dot ca>
2+
3+
### Added
4+
- CoreDNS 1.13.0
5+
6+
### Changed
7+
- Switch CoreDNS user and group id to 5353
8+
9+
110
## 1.0.2 2025-09-09 <dave at tiredofit dot ca>
211

312
### Added

Containerfile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
#
33
# SPDX-License-Identifier: MIT
44

5-
ARG BASE_IMAGE
6-
ARG DISTRO
7-
ARG DISTRO_VARIANT
5+
ARG \
6+
BASE_IMAGE
87

9-
FROM ${BASE_IMAGE}:${DISTRO}_${DISTRO_VARIANT}
8+
FROM ${BASE_IMAGE}
109

1110
LABEL \
1211
org.opencontainers.image.title="CoreDNS" \
@@ -24,7 +23,7 @@ COPY README.md /usr/src/container/README.md
2423

2524
ARG \
2625
COREDNS_REPO_URL="https://github.com/coredns/coredns" \
27-
COREDNS_VERSION="v1.12.4"
26+
COREDNS_VERSION="v1.13.0"
2827

2928
ENV \
3029
CONTAINER_ENABLE_MESSAGING=FALSE \
@@ -49,7 +48,7 @@ RUN echo "" && \
4948
\
5049
source /container/base/functions/container/build && \
5150
container_build_log image && \
52-
create_user coredns 9376 coredns 9376 && \
51+
create_user coredns 5353 coredns 5353 && \
5352
package update && \
5453
package upgrade && \
5554
package install \

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Example:
5959
`ghcr.io/nfrastack/container-coredns:1.0` or
6060

6161
* `latest` will be the most recent commit
62-
* An otpional `tag` may exist that matches the [CHANGELOG](CHANGELOG.md) - These are the safest
62+
* An optional `tag` may exist that matches the [CHANGELOG](CHANGELOG.md) - These are the safest
6363
* If it is built for multiple distributions there may exist a value of `alpine` or `debian`
6464
* If there are multiple distribution variations it may include a version - see the registry for availability
6565

@@ -186,8 +186,8 @@ This will configure two domains, one as a primary and one as a secondary, each w
186186

187187
| Type | Name | ID |
188188
| ----- | --------- | ---- |
189-
| User | `coredns` | 9376 |
190-
| Group | `coredns` | 9376 |
189+
| User | `coredns` | 5353 |
190+
| Group | `coredns` | 5353 |
191191

192192
### Networking
193193

0 commit comments

Comments
 (0)