Sign inSign up
adminer logo

adminer:5.5.0-fastcgi

Multi-platform
Also known as:
5-fastcgi
fastcgi
Databases & storage
Index digest

sha256:7cca12412673fc6c4d399b543fc3dec5f0df4606aa59f310e958fb63976966d7

OS/ARCH

Compressed size

35.05 MB

Last pushed

about 2 months by doijanky

Type

Image

Vulnerabilities

4
33
16
8
2

Manifest digest

sha256:e152df57eda1579ee6fccc125b76aa6dcfcffecd543c5d9e25877d673577be49

Layers (38)

php:8.4-fpm-alpine
4
15
9
5
2
adminer:5.5.0-fastcgi
0
18
7
3
0

26

RUN /bin/sh -c echo "upload_max_filesize = 128M" >> /usr/local/etc/php/conf.d/0-upload_large_dumps.ini && echo "post_max_size = 128M" >> /usr/local/etc/php/conf.d/0-upload_large_dumps.ini && echo "memory_limit = 1G" >> /usr/local/etc/php/conf.d/0-upload_large_dumps.ini && echo "max_execution_time = 600" >> /usr/local/etc/php/conf.d/0-upload_large_dumps.ini && echo "max_input_vars = 5000" >> /usr/local/etc/php/conf.d/0-upload_large_dumps.ini # buildkit

303 B


27

RUN /bin/sh -c addgroup -S adminer && adduser -S -G adminer adminer && mkdir -p /var/www/html && mkdir /var/www/html/plugins-enabled && chown -R adminer:adminer /var/www/html # buildkit

1.04 KB


28

RUN /bin/sh -c set -x && apk add --no-cache --virtual .build-deps postgresql-dev sqlite-dev unixodbc-dev freetds-dev && docker-php-ext-configure pdo_odbc --with-pdo-odbc=unixODBC,/usr && docker-php-ext-install mysqli pdo_pgsql pdo_sqlite pdo_odbc pdo_dblib && runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )" && apk add --no-cache --virtual .phpexts-rundeps $runDeps && apk del --no-network .build-deps # buildkit

1.46 MB


29

COPY *.php /var/www/html/ # buildkit

1.77 KB


30

ENV ADMINER_VERSION=5.5.0

0 B


31

ENV ADMINER_DOWNLOAD_SHA256=d7494bb10abc7c5c7709fd134ab1bd6ebd3b37aabef6d11c42985209864e4dc9

0 B


32

ENV ADMINER_SRC_DOWNLOAD_SHA256=df469c31699848c7523f67204530bd7e3126c4f5048107f526232ccc5d0fe1f7

0 B


33

RUN /bin/sh -c set -x && curl -fsSL https://github.com/vrana/adminer/releases/download/v$ADMINER_VERSION/adminer-$ADMINER_VERSION.php -o adminer.php && echo "$ADMINER_DOWNLOAD_SHA256 adminer.php" |sha256sum -c - && curl -fsSL https://github.com/vrana/adminer/archive/v$ADMINER_VERSION.tar.gz -o source.tar.gz && echo "$ADMINER_SRC_DOWNLOAD_SHA256 source.tar.gz" |sha256sum -c - && tar xzf source.tar.gz --strip-components=1 "adminer-$ADMINER_VERSION/designs/" "adminer-$ADMINER_VERSION/plugins/" && rm source.tar.gz # buildkit

653.13 KB


34

COPY entrypoint.sh /usr/local/bin/ # buildkit

493 B


35

ENTRYPOINT ["entrypoint.sh" "docker-php-entrypoint"]

0 B


36

USER adminer

0 B


37

CMD ["php-fpm"]

0 B