Skip to content

Commit a014108

Browse files
committed
All: fix PHP binary [closes #55]
1 parent 206fed5 commit a014108

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

adminer-dg/Dockerfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ RUN echo '@community http://nl.alpinelinux.org/alpine/v3.20/community' >> /etc/a
1212
apk update && \
1313
apk upgrade && \
1414
apk add \
15-
wget \
16-
ca-certificates \
17-
php83@community \
18-
php83-session@community \
19-
php83-mysqli@community \
20-
php83-pgsql@community \
21-
php83-json@community \
22-
php83-pecl-mongodb@community \
23-
tini && \
15+
wget \
16+
ca-certificates \
17+
php83@community \
18+
php83-session@community \
19+
php83-mysqli@community \
20+
php83-pgsql@community \
21+
php83-json@community \
22+
php83-pecl-mongodb@community \
23+
tini && \
2424
wget https://github.com/dg/adminer-custom/archive/v$ADMINER_DG_VERION.tar.gz -O /srv/adminer.tgz && \
2525
tar zxvf /srv/adminer.tgz --strip-components=1 -C /srv && \
2626
rm /srv/adminer.tgz && \

adminer-editor/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ RUN echo '@community http://nl.alpinelinux.org/alpine/v3.20/community' >> /etc/a
1414
apk add \
1515
wget \
1616
ca-certificates \
17+
php83@community \
1718
php83-session@community \
1819
php83-mysqli@community \
1920
php83-pgsql@community \
2021
php83-json@community \
2122
php83-pecl-mongodb@community \
2223
tini && \
2324
wget https://github.com/vrana/adminer/releases/download/v$ADMINER_EDITOR_VERSION/editor-$ADMINER_EDITOR_VERSION.php -O /srv/index.php && \
24-
ln -s /usr/bin/php83 /usr/bin/php && \
2525
apk del wget ca-certificates && \
2626
rm -rf /var/cache/apk/*
2727

adminer-full/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ RUN echo '@community http://nl.alpinelinux.org/alpine/v3.20/community' >> /etc/a
1414
apk add \
1515
wget \
1616
ca-certificates \
17+
php83@community \
1718
php83-session@community \
1819
php83-mysqli@community \
1920
php83-pgsql@community \
2021
php83-json@community \
2122
php83-pecl-mongodb@community \
2223
tini && \
2324
wget https://github.com/vrana/adminer/releases/download/v$ADMINER_VERSION/adminer-$ADMINER_VERSION.php -O /srv/index.php && \
24-
ln -s /usr/bin/php8 /usr/bin/php && \
2525
apk del wget ca-certificates && \
2626
rm -rf /var/cache/apk/*
2727

adminer-mongo/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ RUN echo '@community http://nl.alpinelinux.org/alpine/v3.20/community' >> /etc/a
1414
apk add \
1515
wget \
1616
ca-certificates \
17+
php83@community \
1718
php83-session@community \
1819
php83-pecl-mongodb@community \
1920
tini && \
2021
wget https://github.com/vrana/adminer/releases/download/v$ADMINER_VERSION/adminer-$ADMINER_VERSION.php -O /srv/index.php && \
21-
ln -s /usr/bin/php83 /usr/bin/php && \
2222
apk del wget ca-certificates && \
2323
rm -rf /var/cache/apk/*
2424

adminer-mysql/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ RUN echo '@community http://nl.alpinelinux.org/alpine/v3.20/community' >> /etc/a
1414
apk add \
1515
wget \
1616
ca-certificates \
17+
php83@community \
1718
php83-session@community \
1819
php83-mysqli@community \
1920
tini && \
2021
wget https://github.com/vrana/adminer/releases/download/v$ADMINER_VERSION/adminer-$ADMINER_VERSION.php -O /srv/index.php && \
21-
ln -s /usr/bin/php83 /usr/bin/php && \
2222
apk del wget ca-certificates && \
2323
rm -rf /var/cache/apk/*
2424

adminer-postgres/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ RUN echo '@community http://nl.alpinelinux.org/alpine/v3.20/community' >> /etc/a
1414
apk add \
1515
wget \
1616
ca-certificates \
17+
php83@community \
1718
php83-session@community \
1819
php83-pgsql@community \
1920
tini && \
2021
wget https://github.com/vrana/adminer/releases/download/v$ADMINER_VERSION/adminer-$ADMINER_VERSION.php -O /srv/index.php && \
21-
ln -s /usr/bin/php83 /usr/bin/php && \
2222
apk del wget ca-certificates && \
2323
rm -rf /var/cache/apk/*
2424

0 commit comments

Comments
 (0)