Skip to content

Commit 80e4ce6

Browse files
committed
Postfixadmin/3.3.16 / Add multi-platforms
1 parent 672cbf9 commit 80e4ce6

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM technicalguru/php:8.4.7-apache-2.4.62.0
1+
FROM technicalguru/php:8.4.13-apache-2.4.65.0
22
LABEL maintainer="Ralph Schuster <github@ralph-schuster.eu>"
33

44
RUN apt-get update && apt-get update && apt-get install -y --no-install-recommends \
@@ -11,7 +11,7 @@ RUN apt-get update && apt-get update && apt-get install -y --no-install-recomme
1111
#ADD etc/sites/ /etc/apache2/sites-enabled/
1212
RUN chown -R www-data:www-data /var/www/html
1313

14-
ENV PFA_VERSION="3.3.15"
14+
ENV PFA_VERSION="3.3.16"
1515
ENV PFA_REVISION="0"
1616
ENV PFA_URL="https://github.com/postfixadmin/postfixadmin/archive/postfixadmin-${PFA_VERSION}.tar.gz"
1717
RUN set -xe \

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,13 @@ Related images:
1313
# Tags
1414
The following versions are available from DockerHub. The image tag matches the PostfixAdmin version.
1515

16-
* [3.3.15.1, 3.3.15, 3.3, 3, latest](https://hub.docker.com/repository/docker/technicalguru/mailserver-postfixadmin/tree/v3.3.15.1) - [Dockerfile](https://github.com/technicalguru/docker-mailserver-postfixadmin/blob/3.3.15.1/Dockerfile)
16+
* [3.3.16.0, 3.3.16, 3.3, 3, latest](https://hub.docker.com/repository/docker/technicalguru/mailserver-postfixadmin/tree/v3.3.16.0) - [Dockerfile](https://github.com/technicalguru/docker-mailserver-postfixadmin/blob/3.3.16.0/Dockerfile)
1717
* [3.2.4-01, 3.2.4, 3.2](https://hub.docker.com/repository/docker/technicalguru/mailserver-postfixadmin/tree/v3.2.4-01) - [Dockerfile](https://github.com/technicalguru/docker-mailserver-postfixadmin/blob/3.2.4-01/Dockerfile)
1818

19+
# Supported Platforms
20+
* linux/amd64
21+
* linux/arm64
22+
1923
# Features
2024
* Database and PostfixAdmin setup from environment variables
2125

build.sh

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
1-
docker build --progress=plain -t technicalguru/mailserver-postfixadmin:latest .
1+
docker buildx build \
2+
--progress=plain \
3+
-t technicalguru/mailserver-postfixadmin:latest \
4+
-t technicalguru/mailserver-postfixadmin:3.3.16.0 \
5+
-t technicalguru/mailserver-postfixadmin:3.3.16 \
6+
-t technicalguru/mailserver-postfixadmin:3.3 \
7+
-t technicalguru/mailserver-postfixadmin:3 \
8+
--push \
9+
--platform linux/amd64,linux/arm64 \
10+
11+
#docker build --progress=plain -t technicalguru/mailserver-postfixadmin:latest .

0 commit comments

Comments
 (0)