Skip to content

Commit 6d73dc8

Browse files
committed
Run update.sh
Signed-off-by: Daniel Rudolf <[email protected]>
1 parent e68cbb8 commit 6d73dc8

File tree

4 files changed

+44
-16
lines changed

4 files changed

+44
-16
lines changed

apache/Dockerfile

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
12
FROM php:8.1-apache
23

34
# Install dependencies
@@ -72,15 +73,15 @@ RUN set -ex; \
7273
# Calculate download URL
7374
ENV VERSION 5.2.1
7475
ENV SHA256 373f9599dfbd96d6fe75316d5dad189e68c305f297edf42377db9dd6b41b2557
75-
ENV URL https://files.phpmyadmin.net/phpMyAdmin/${VERSION}/phpMyAdmin-${VERSION}-all-languages.tar.xz
76+
ENV URL https://files.phpmyadmin.net/phpMyAdmin/5.2.1/phpMyAdmin-5.2.1-all-languages.tar.xz
7677

7778
LABEL org.opencontainers.image.title="Official phpMyAdmin Docker image" \
7879
org.opencontainers.image.description="Run phpMyAdmin with Alpine, Apache and PHP FPM." \
7980
org.opencontainers.image.authors="The phpMyAdmin Team <[email protected]>" \
8081
org.opencontainers.image.vendor="phpMyAdmin" \
8182
org.opencontainers.image.documentation="https://github.com/phpmyadmin/docker#readme" \
8283
org.opencontainers.image.licenses="GPL-2.0-only" \
83-
org.opencontainers.image.version="${VERSION}" \
84+
org.opencontainers.image.version="5.2.1" \
8485
org.opencontainers.image.url="https://github.com/phpmyadmin/docker#readme" \
8586
org.opencontainers.image.source="https://github.com/phpmyadmin/docker.git"
8687

@@ -97,9 +98,9 @@ RUN set -ex; \
9798
\
9899
export GNUPGHOME="$(mktemp -d)"; \
99100
export GPGKEY="3D06A59ECE730EB71B511C17CE752F178259BD92"; \
100-
curl -fsSL -o phpMyAdmin.tar.xz $URL; \
101-
curl -fsSL -o phpMyAdmin.tar.xz.asc $URL.asc; \
102-
echo "$SHA256 *phpMyAdmin.tar.xz" | sha256sum -c -; \
101+
curl -fsSL -o phpMyAdmin.tar.xz "https://files.phpmyadmin.net/phpMyAdmin/5.2.1/phpMyAdmin-5.2.1-all-languages.tar.xz"; \
102+
curl -fsSL -o phpMyAdmin.tar.xz.asc "https://files.phpmyadmin.net/phpMyAdmin/5.2.1/phpMyAdmin-5.2.1-all-languages.tar.xz.asc"; \
103+
echo "373f9599dfbd96d6fe75316d5dad189e68c305f297edf42377db9dd6b41b2557 *phpMyAdmin.tar.xz" | sha256sum -c -; \
103104
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$GPGKEY" \
104105
|| gpg --batch --keyserver pgp.mit.edu --recv-keys "$GPGKEY" \
105106
|| gpg --batch --keyserver keyserver.pgp.com --recv-keys "$GPGKEY" \

fpm-alpine/Dockerfile

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
12
FROM php:8.1-fpm-alpine
23

34
# docker-entrypoint.sh dependencies
@@ -70,15 +71,15 @@ RUN set -ex; \
7071
# Calculate download URL
7172
ENV VERSION 5.2.1
7273
ENV SHA256 373f9599dfbd96d6fe75316d5dad189e68c305f297edf42377db9dd6b41b2557
73-
ENV URL https://files.phpmyadmin.net/phpMyAdmin/${VERSION}/phpMyAdmin-${VERSION}-all-languages.tar.xz
74+
ENV URL https://files.phpmyadmin.net/phpMyAdmin/5.2.1/phpMyAdmin-5.2.1-all-languages.tar.xz
7475

7576
LABEL org.opencontainers.image.title="Official phpMyAdmin Docker image" \
7677
org.opencontainers.image.description="Run phpMyAdmin with Alpine, Apache and PHP FPM." \
7778
org.opencontainers.image.authors="The phpMyAdmin Team <[email protected]>" \
7879
org.opencontainers.image.vendor="phpMyAdmin" \
7980
org.opencontainers.image.documentation="https://github.com/phpmyadmin/docker#readme" \
8081
org.opencontainers.image.licenses="GPL-2.0-only" \
81-
org.opencontainers.image.version="${VERSION}" \
82+
org.opencontainers.image.version="5.2.1" \
8283
org.opencontainers.image.url="https://github.com/phpmyadmin/docker#readme" \
8384
org.opencontainers.image.source="https://github.com/phpmyadmin/docker.git"
8485

@@ -90,9 +91,9 @@ RUN set -ex; \
9091
\
9192
export GNUPGHOME="$(mktemp -d)"; \
9293
export GPGKEY="3D06A59ECE730EB71B511C17CE752F178259BD92"; \
93-
curl -fsSL -o phpMyAdmin.tar.xz $URL; \
94-
curl -fsSL -o phpMyAdmin.tar.xz.asc $URL.asc; \
95-
echo "$SHA256 *phpMyAdmin.tar.xz" | sha256sum -c -; \
94+
curl -fsSL -o phpMyAdmin.tar.xz "https://files.phpmyadmin.net/phpMyAdmin/5.2.1/phpMyAdmin-5.2.1-all-languages.tar.xz"; \
95+
curl -fsSL -o phpMyAdmin.tar.xz.asc "https://files.phpmyadmin.net/phpMyAdmin/5.2.1/phpMyAdmin-5.2.1-all-languages.tar.xz.asc"; \
96+
echo "373f9599dfbd96d6fe75316d5dad189e68c305f297edf42377db9dd6b41b2557 *phpMyAdmin.tar.xz" | sha256sum -c -; \
9697
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$GPGKEY" \
9798
|| gpg --batch --keyserver pgp.mit.edu --recv-keys "$GPGKEY" \
9899
|| gpg --batch --keyserver keyserver.pgp.com --recv-keys "$GPGKEY" \

fpm/Dockerfile

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
12
FROM php:8.1-fpm
23

34
# Install dependencies
@@ -72,15 +73,15 @@ RUN set -ex; \
7273
# Calculate download URL
7374
ENV VERSION 5.2.1
7475
ENV SHA256 373f9599dfbd96d6fe75316d5dad189e68c305f297edf42377db9dd6b41b2557
75-
ENV URL https://files.phpmyadmin.net/phpMyAdmin/${VERSION}/phpMyAdmin-${VERSION}-all-languages.tar.xz
76+
ENV URL https://files.phpmyadmin.net/phpMyAdmin/5.2.1/phpMyAdmin-5.2.1-all-languages.tar.xz
7677

7778
LABEL org.opencontainers.image.title="Official phpMyAdmin Docker image" \
7879
org.opencontainers.image.description="Run phpMyAdmin with Alpine, Apache and PHP FPM." \
7980
org.opencontainers.image.authors="The phpMyAdmin Team <[email protected]>" \
8081
org.opencontainers.image.vendor="phpMyAdmin" \
8182
org.opencontainers.image.documentation="https://github.com/phpmyadmin/docker#readme" \
8283
org.opencontainers.image.licenses="GPL-2.0-only" \
83-
org.opencontainers.image.version="${VERSION}" \
84+
org.opencontainers.image.version="5.2.1" \
8485
org.opencontainers.image.url="https://github.com/phpmyadmin/docker#readme" \
8586
org.opencontainers.image.source="https://github.com/phpmyadmin/docker.git"
8687

@@ -97,9 +98,9 @@ RUN set -ex; \
9798
\
9899
export GNUPGHOME="$(mktemp -d)"; \
99100
export GPGKEY="3D06A59ECE730EB71B511C17CE752F178259BD92"; \
100-
curl -fsSL -o phpMyAdmin.tar.xz $URL; \
101-
curl -fsSL -o phpMyAdmin.tar.xz.asc $URL.asc; \
102-
echo "$SHA256 *phpMyAdmin.tar.xz" | sha256sum -c -; \
101+
curl -fsSL -o phpMyAdmin.tar.xz "https://files.phpmyadmin.net/phpMyAdmin/5.2.1/phpMyAdmin-5.2.1-all-languages.tar.xz"; \
102+
curl -fsSL -o phpMyAdmin.tar.xz.asc "https://files.phpmyadmin.net/phpMyAdmin/5.2.1/phpMyAdmin-5.2.1-all-languages.tar.xz.asc"; \
103+
echo "373f9599dfbd96d6fe75316d5dad189e68c305f297edf42377db9dd6b41b2557 *phpMyAdmin.tar.xz" | sha256sum -c -; \
103104
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$GPGKEY" \
104105
|| gpg --batch --keyserver pgp.mit.edu --recv-keys "$GPGKEY" \
105106
|| gpg --batch --keyserver keyserver.pgp.com --recv-keys "$GPGKEY" \

versions.json

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,26 @@
1-
{}
1+
{
2+
"5.2": {
3+
"branch": "5.2",
4+
"version": "5.2.1",
5+
"sha256": "373f9599dfbd96d6fe75316d5dad189e68c305f297edf42377db9dd6b41b2557",
6+
"url": "https://files.phpmyadmin.net/phpMyAdmin/5.2.1/phpMyAdmin-5.2.1-all-languages.tar.xz",
7+
"ascUrl": "https://files.phpmyadmin.net/phpMyAdmin/5.2.1/phpMyAdmin-5.2.1-all-languages.tar.xz.asc",
8+
"variants": {
9+
"apache": {
10+
"variant": "apache",
11+
"base": "debian",
12+
"phpVersion": "8.1"
13+
},
14+
"fpm": {
15+
"variant": "fpm",
16+
"base": "debian",
17+
"phpVersion": "8.1"
18+
},
19+
"fpm-alpine": {
20+
"variant": "fpm-alpine",
21+
"base": "alpine",
22+
"phpVersion": "8.1"
23+
}
24+
}
25+
}
26+
}

0 commit comments

Comments
 (0)