adminer-editor image uses an outdated version of the app
W1M0R opened this issue · 2 comments
W1M0R commented
The adminer-editor Dockerfile indicates that ADMINER_EDITOR_VERSION=4.7.0 is being used. A newer version is available.
You should be able to use a similar command when updating the ADMINER_VERSION:
find . -type f -name Dockerfile -exec sed -i '' 's/ENV ADMINER_EDITOR_VERSION=.*/ENV ADMINER_EDITOR_VERSION=4.7.X/g' {} +
Alternatively, you could add the following lines to your Dockerfile to make it possible for consumers to set the version via docker build args:
ARG ADMINER_EDITOR_VERSION=4.7.5
ENV ADMINER_EDITOR_VERSION=${ADMINER_EDITOR_VERSION}
f3l1x commented
I've added your bash oneliner to the readme, thanks.
f3l1x commented
Also update to latest version 742dd57#diff-41419fbc789f9bf01eec132b50c80da2