gpsquid (sha256:f0d46cc63b85b7c319092ac6ad035a59cc821c9461068000898d47a202a1e66e)
Published 2025-09-07 23:32:21 +02:00 by chak
Installation
docker pull git.vasyl.pw/chak/gpsquid@sha256:f0d46cc63b85b7c319092ac6ad035a59cc821c9461068000898d47a202a1e66esha256:f0d46cc63b85b7c319092ac6ad035a59cc821c9461068000898d47a202a1e66eImage layers
| ADD alpine-minirootfs-3.22.1-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| WORKDIR /var/www/html |
| RUN /bin/sh -c apk add --no-cache curl nginx php84 php84-ctype php84-curl php84-dom php84-fileinfo php84-fpm php84-intl php84-mbstring php84-opcache php84-openssl php84-phar php84-session php84-tokenizer php84-xml php84-xmlreader php84-xmlwriter php84-redis php84-pdo php84-pdo_pgsql php84-pgsql supervisor nodejs npm # buildkit |
| ENV TZ=Europe/Rome |
| COPY ./server/nginx.conf /etc/nginx/nginx.conf # buildkit |
| COPY ./server/conf.d /etc/nginx/conf.d/ # buildkit |
| ENV PHP_INI_DIR=/etc/php84 |
| COPY ./server/fpm-pool.conf /etc/php84/php-fpm.d/www.conf # buildkit |
| COPY ./server/php.ini /etc/php84/conf.d/custom.ini # buildkit |
| COPY ./server/supervisord.conf /etc/supervisor/conf.d/supervisord.conf # buildkit |
| RUN /bin/sh -c mkfifo -m 600 /tmp/logpipe chown nobody:nobody /tmp/logpipe cat <> /tmp/logpipe 1>&2 & # buildkit |
| COPY ./app /var/www/html/app # buildkit |
| COPY ./bootstrap /var/www/html/bootstrap # buildkit |
| COPY ./database /var/www/html/database # buildkit |
| COPY ./config /var/www/html/config # buildkit |
| COPY ./public /var/www/html/public # buildkit |
| COPY ./routes /var/www/html/routes # buildkit |
| COPY ./storage /var/www/html/storage # buildkit |
| COPY ./vendor /var/www/html/vendor # buildkit |
| COPY ./artisan /var/www/html/artisan # buildkit |
| COPY ./composer.json /var/www/html/composer.json # buildkit |
| COPY ./composer.lock /var/www/html/composer.lock # buildkit |
| RUN /bin/sh -c chown -R nobody:nobody /var/www/html /run /var/lib/nginx /var/log/nginx # buildkit |
| RUN /bin/sh -c php84 artisan storage:link # buildkit |
| EXPOSE map[8080/tcp:{}] |
| CMD ["/usr/bin/supervisord" "-c" "/etc/supervisor/conf.d/supervisord.conf"] |
| HEALTHCHECK &{["CMD-SHELL" "curl --silent --fail http://127.0.0.1:8080/fpm-ping || exit 1"] "0s" "10s" "0s" "0s" '\x00'} |