Skip to content

Commit

Permalink
Upgrade s6-overlay to 3.2.0.0 version
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed Jun 10, 2024
1 parent 5090bf8 commit a9d6d1a
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 10 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ All user visible changes to this project will be documented in this file. This p



## [2.11.0-Beta2-r14] · 2024-06-10
[2.11.0-Beta2-r14]: /../../tree/2.11.0-Beta2-r14

[Diff](/../../compare/2.11.0-Beta2-r13...2.11.0-Beta2-r14)

### Upgraded

- [s6-overlay] 3.2.0.0: <https://github.com/just-containers/s6-overlay/releases/tag/v3.2.0.0>




## [2.11.0-Beta2-r13] · 2024-05-24
[2.11.0-Beta2-r13]: /../../tree/2.11.0-Beta2-r13

Expand Down
5 changes: 3 additions & 2 deletions Dockerfile.tmpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<? } ?>

ARG opendkim_ver=<?= explode('-', $var['version'])[0].'-'.explode('-', $var['version'])[1]."\n"; ?>
ARG s6_overlay_ver=3.1.6.2
ARG s6_overlay_ver=3.2.0.0


# Build and install OpenDKIM
Expand Down Expand Up @@ -177,7 +177,8 @@

ENV S6_KEEP_ENV=1 \
S6_BEHAVIOUR_IF_STAGE2_FAILS=2 \
S6_CMD_WAIT_FOR_SERVICES=1
S6_CMD_WAIT_FOR_SERVICES=1 \
S6_CMD_WAIT_FOR_SERVICES_MAXTIME=5000


COPY rootfs /
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ REGISTRIES := $(strip $(subst $(comma), ,\
$(shell grep -m1 'registry: \["' .github/workflows/ci.yml \
| cut -d':' -f2 | tr -d '"][')))
ALL_IMAGES := \
debian:2.11.0-Beta2-r13,2.11.0-Beta2,2.11,2,latest \
alpine:2.11.0-Beta2-r13-alpine,2.11.0-Beta2-alpine,2.11-alpine,2-alpine,alpine
debian:2.11.0-Beta2-r14,2.11.0-Beta2,2.11,2,latest \
alpine:2.11.0-Beta2-r14-alpine,2.11.0-Beta2-alpine,2.11-alpine,2-alpine,alpine
# <Dockerfile>:<version>,<tag1>,<tag2>,...

# Default is first image from ALL_IMAGES list.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ OpenDKIM Docker image

## Supported tags and respective `Dockerfile` links

- [`2.11.0-Beta2-r13`, `2.11.0-Beta2`, `2.11`, `2`, `latest`][101]
- [`2.11.0-Beta2-r13-alpine`, `2.11.0-Beta2-alpine`, `2.11-alpine`, `2-alpine`, `alpine`][102]
- [`2.11.0-Beta2-r14`, `2.11.0-Beta2`, `2.11`, `2`, `latest`][101]
- [`2.11.0-Beta2-r14-alpine`, `2.11.0-Beta2-alpine`, `2.11-alpine`, `2-alpine`, `alpine`][102]



Expand Down
5 changes: 3 additions & 2 deletions alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
FROM alpine:3.20

ARG opendkim_ver=2.11.0-Beta2
ARG s6_overlay_ver=3.1.6.2
ARG s6_overlay_ver=3.2.0.0


# Build and install OpenDKIM
Expand Down Expand Up @@ -101,7 +101,8 @@ RUN apk add --update --no-cache --virtual .tool-deps \

ENV S6_KEEP_ENV=1 \
S6_BEHAVIOUR_IF_STAGE2_FAILS=2 \
S6_CMD_WAIT_FOR_SERVICES=1
S6_CMD_WAIT_FOR_SERVICES=1 \
S6_CMD_WAIT_FOR_SERVICES_MAXTIME=5000


COPY rootfs /
Expand Down
5 changes: 3 additions & 2 deletions debian/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
FROM debian:bookworm-slim

ARG opendkim_ver=2.11.0-Beta2
ARG s6_overlay_ver=3.1.6.2
ARG s6_overlay_ver=3.2.0.0


# Build and install OpenDKIM
Expand Down Expand Up @@ -110,7 +110,8 @@ RUN apt-get update \

ENV S6_KEEP_ENV=1 \
S6_BEHAVIOUR_IF_STAGE2_FAILS=2 \
S6_CMD_WAIT_FOR_SERVICES=1
S6_CMD_WAIT_FOR_SERVICES=1 \
S6_CMD_WAIT_FOR_SERVICES_MAXTIME=5000


COPY rootfs /
Expand Down

0 comments on commit a9d6d1a

Please sign in to comment.