Sign inSign up
adminer logo

adminer:5-fastcgi

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

sha256:ae4e3049a17420c93dd53c6792811a1f3052aeeb582f732fd729334ff36d869b

OS/ARCH

Compressed size

36.85 MB

Last pushed

1 day by doijanky

Type

Image

Vulnerabilities

0
1
8
5
1

Manifest digest

sha256:8df2207879af7419bc1b4c4d8a7d338a644ba523b4c145ce6efdc0956c4b51f6

Layers (38)

php:8.4-fpm-alpine
0
1
8
5
1
adminer:5-fastcgi
0
0
0
0
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

302 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.47 MB


29

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

1.77 KB


30

ENV ADMINER_VERSION=5.5.1

0 B


31

ENV ADMINER_DOWNLOAD_SHA256=f2c70c6403a042d554be1dd8d69b6f6270a97e5b40d2fb7626f46aad821e9a18

0 B


32

ENV ADMINER_SRC_DOWNLOAD_SHA256=dfac9604fc044e0856fbcacd587db9540df4e67d53a180377f51b9a228d7b136

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

598.15 KB


34

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

494 B


35

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

0 B


36

USER adminer

0 B


37

CMD ["php-fpm"]

0 B