Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
docker run --name $container_name -d ${{ steps.build.outputs.image }}
docker run -i --rm --link $container_name:$container_name buildpack-deps:curl \
curl -fsSL http://$container_name:8080/ \
|grep '<span class=\"version\">'${{ steps.build.outputs.version }}
|grep -Pz '<span class="version">\n${{ steps.build.outputs.version }}'
env:
container_name: adminer_version
- name: Verify that no warnings appear.
Expand Down
6 changes: 3 additions & 3 deletions 4/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ RUN set -x \

COPY *.php /var/www/html/

ENV ADMINER_VERSION=4.8.1
ENV ADMINER_DOWNLOAD_SHA256=2fd7e6d8f987b243ab1839249551f62adce19704c47d3d0c8dd9e57ea5b9c6b3
ENV ADMINER_SRC_DOWNLOAD_SHA256=ef832414296d11eed33e9d85fff3fb316c63f13f05fceb4a961cbe4cb2ae8712
ENV ADMINER_VERSION=4.16.0
ENV ADMINER_DOWNLOAD_SHA256=f2596b1f110af2dff35c9a55b799bca16a160e6b482ab81b4bbf1378f5b4463f
ENV ADMINER_SRC_DOWNLOAD_SHA256=77113a436349faa0229325d450c3cb00442bab6fc00a3008772ec78bb42aef93

RUN set -x \
&& curl -fsSL https://github.com/vrana/adminer/releases/download/v$ADMINER_VERSION/adminer-$ADMINER_VERSION.php -o adminer.php \
Expand Down
6 changes: 3 additions & 3 deletions 4/fastcgi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ RUN set -x \

COPY *.php /var/www/html/

ENV ADMINER_VERSION=4.8.1
ENV ADMINER_DOWNLOAD_SHA256=2fd7e6d8f987b243ab1839249551f62adce19704c47d3d0c8dd9e57ea5b9c6b3
ENV ADMINER_SRC_DOWNLOAD_SHA256=ef832414296d11eed33e9d85fff3fb316c63f13f05fceb4a961cbe4cb2ae8712
ENV ADMINER_VERSION=4.16.0
ENV ADMINER_DOWNLOAD_SHA256=f2596b1f110af2dff35c9a55b799bca16a160e6b482ab81b4bbf1378f5b4463f
ENV ADMINER_SRC_DOWNLOAD_SHA256=77113a436349faa0229325d450c3cb00442bab6fc00a3008772ec78bb42aef93

RUN set -x \
&& curl -fsSL https://github.com/vrana/adminer/releases/download/v$ADMINER_VERSION/adminer-$ADMINER_VERSION.php -o adminer.php \
Expand Down