- msk.ru
- https://axel-verse.ru
- Joined on
2023-12-22
Block a user
netup-laravel (0.3.8-staging)
Published 2024-10-22 15:12:39 +03:00 by administrator
Installation
docker pull gitea.minis.mudrov.tech/administrator/netup-laravel:0.3.8-stagingsha256:bad053805acc51f5d9ad9e21da6104c584b924301fdff3722a5268cbdd33bff2Image Layers
| ADD file:5758b97d8301c84a204a6e516241275d785a7cade40b2fb99f01fe122482e283 in / |
| CMD ["/bin/sh"] |
| ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c |
| /bin/sh -c apk add --no-cache ca-certificates curl openssl tar xz |
| /bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data |
| ENV PHP_INI_DIR=/usr/local/etc/php |
| /bin/sh -c set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html |
| ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 |
| ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 |
| ENV PHP_LDFLAGS=-Wl,-O1 -pie |
| ENV GPG_KEYS=1198C0117593497A5EC5C199286AF1F9897469DC C28D937575603EB4ABB725861C0779DC5C0A9DE4 AFD8691FDAEDF03BDF6E460563F15A9B715376CA |
| ENV PHP_VERSION=8.3.12 |
| ENV PHP_URL=https://www.php.net/distributions/php-8.3.12.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.3.12.tar.xz.asc |
| ENV PHP_SHA256=f774e28633e26fc8c5197f4dae58ec9e3ff87d1b4311cbc61ab05a7ad24bd131 |
| /bin/sh -c set -eux; apk add --no-cache --virtual .fetch-deps gnupg; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apk del --no-network .fetch-deps |
| COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ |
| /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps $PHPIZE_DEPS argon2-dev coreutils curl-dev gnu-libiconv-dev libsodium-dev libxml2-dev linux-headers oniguruma-dev openssl-dev readline-dev sqlite-dev ; rm -vf /usr/include/iconv.h; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" PHP_BUILD_PROVIDER='https://github.com/docker-library/php' PHP_UNAME='Linux - Docker' ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv=/usr --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear --disable-cgi --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache $runDeps; apk del --no-network .build-deps; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version |
| COPY multi:869bde9dbeae74886a05c9e2107b3e3b4877116db8c6d9adbaff2719f9fb5262 in /usr/local/bin/ |
| /bin/sh -c docker-php-ext-enable sodium |
| ENTRYPOINT ["docker-php-entrypoint"] |
| WORKDIR /var/www/html |
| /bin/sh -c set -eux; cd /usr/local/etc; if [ -d php-fpm.d ]; then sed 's!=NONE/!=!g' php-fpm.conf.default | tee php-fpm.conf > /dev/null; cp php-fpm.d/www.conf.default php-fpm.d/www.conf; else mkdir php-fpm.d; cp php-fpm.conf.default php-fpm.d/www.conf; { echo '[global]'; echo 'include=etc/php-fpm.d/*.conf'; } | tee php-fpm.conf; fi; { echo '[global]'; echo 'error_log = /proc/self/fd/2'; echo; echo '; https://github.com/docker-library/php/pull/725#issuecomment-443540114'; echo 'log_limit = 8192'; echo; echo '[www]'; echo '; php-fpm closes STDOUT on startup, so sending logs to /proc/self/fd/1 does not work.'; echo '; https://bugs.php.net/bug.php?id=73886'; echo 'access.log = /proc/self/fd/2'; echo; echo 'clear_env = no'; echo; echo '; Ensure worker stdout and stderr are sent to the main error log.'; echo 'catch_workers_output = yes'; echo 'decorate_workers_output = no'; } | tee php-fpm.d/docker.conf; { echo '[global]'; echo 'daemonize = no'; echo; echo '[www]'; echo 'listen = 9000'; } | tee php-fpm.d/zz-docker.conf; mkdir -p "$PHP_INI_DIR/conf.d"; { echo '; https://github.com/docker-library/php/issues/878#issuecomment-938595965'; echo 'fastcgi.logging = Off'; } > "$PHP_INI_DIR/conf.d/docker-fpm.ini" |
| STOPSIGNAL SIGQUIT |
| EXPOSE 9000 |
| CMD ["php-fpm"] |
| /bin/sh -c curl -sSLf -o /usr/local/bin/install-php-extensions https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions && chmod a+x /usr/local/bin/install-php-extensions |
| /bin/sh -c install-php-extensions bcmath bz2 calendar decimal exif gd igbinary imagick/imagick@master intl lz4 mcrypt opcache pcntl pdo_mysql pdo_pgsql redis sockets swoole uuid uv zip zstd @composer |
| LABEL org.opencontainers.image.created=2024-10-20T00:27:26Z |
| LABEL org.opencontainers.image.revision=5dc1e070db80935a6a75439dc615d7289897916d |
| LABEL org.opencontainers.image.source=https://gitea.minis.mudrov.tech/administrator/dockerfiles.git |
| LABEL org.opencontainers.image.url=https://gitea.minis.mudrov.tech/administrator/dockerfiles |
| /bin/sh -c echo "opcache.memory_consumption=128" >> $PHP_INI_DIR/conf.d/docker-php-ext-opcache.ini && echo "opcache.interned_strings_buffer=8" >> $PHP_INI_DIR/conf.d/docker-php-ext-opcache.ini && echo "opcache.max_accelerated_files=4000" >> $PHP_INI_DIR/conf.d/docker-php-ext-opcache.ini && echo "opcache.revalidate_freq=60" >> $PHP_INI_DIR/conf.d/docker-php-ext-opcache.ini && echo "opcache.fast_shutdown=1" >> $PHP_INI_DIR/conf.d/docker-php-ext-opcache.ini && echo "opcache.enable_cli=1" >> $PHP_INI_DIR/conf.d/docker-php-ext-opcache.ini && echo "opcache.jit_buffer_size=128M" >> $PHP_INI_DIR/conf.d/docker-php-ext-opcache.ini |
| LABEL org.opencontainers.image.created=2024-10-20T00:34:26Z |
| LABEL org.opencontainers.image.revision=5dc1e070db80935a6a75439dc615d7289897916d |
| LABEL org.opencontainers.image.source=https://gitea.minis.mudrov.tech/administrator/dockerfiles.git |
| LABEL org.opencontainers.image.url=https://gitea.minis.mudrov.tech/administrator/dockerfiles |
| COPY file:c68232d2b4a8cbceb340c57e2d0bb9aed691239dc12fbfa971abff4381cbaa1f in /usr/bin/caddy |
| USER www-data |
| WORKDIR /var/www/lk |
| COPY --chown=www-data:www-datadir:2f9e68f111ed3708799beacf1be0ab98336bdbd1651418b9fcb873ce74d02f42 in /var/www/lk |
| LABEL org.opencontainers.image.created=2024-10-22T12:11:38Z |
| LABEL org.opencontainers.image.revision=ef2d2c31346e9dad9f93d18b91196c9af8b75964 |
| LABEL org.opencontainers.image.source=https://gitea.minis.mudrov.tech/administrator/lk.git |
| LABEL org.opencontainers.image.url=https://gitea.minis.mudrov.tech/administrator/lk |
Labels
| Key | Value |
|---|---|
| org.opencontainers.image.created | 2024-10-22T12:11:38Z |
| org.opencontainers.image.revision | ef2d2c31346e9dad9f93d18b91196c9af8b75964 |
| org.opencontainers.image.source | https://gitea.minis.mudrov.tech/administrator/lk.git |
| org.opencontainers.image.url | https://gitea.minis.mudrov.tech/administrator/lk |
Details
2024-10-22 15:12:39 +03:00
Versions (60)
View all
Container
1
OCI / Docker
linux/amd64
138 MiB
staging
2025-09-23
latest
2025-07-23
1-staging
2025-07-23
1.3-staging
2025-07-23
1.3.14-staging
2025-07-23