issuebot (latest)
Published 2026-03-13 09:57:59 +01:00 by christian
Installation
docker pull gitea.haschek.at/haschek-solutions/issuebot:latestsha256:b0cc2f5656673f89da6b7418dc7608c7bdf4b1c8d4875ec12cbee52971d8d175
Image Layers
| ADD alpine-minirootfs-3.20.9-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| RUN /bin/sh -c apk add --no-cache php83 nginx php83-openssl php83-curl php83-mbstring php83-session php83-json php83-redis php83-fpm php83-fileinfo # buildkit |
| RUN /bin/sh -c mkdir -p /var/www/issuebot # buildkit |
| WORKDIR /var/www/issuebot |
| ADD . /var/www/issuebot/. # buildkit |
| ADD docker/rootfs/start.sh /etc/start.sh # buildkit |
| RUN /bin/sh -c chmod +x /etc/*.sh # buildkit |
| ADD docker/rootfs/nginx.conf /etc/nginx/http.d/default.conf # buildkit |
| RUN /bin/sh -c mkdir -p /run/nginx # buildkit |
| RUN /bin/sh -c mkdir -p /var/log/nginx # buildkit |
| RUN /bin/sh -c sed -i 's/nobody/nginx/g' /etc/php83/php-fpm.d/www.conf # buildkit |
| RUN /bin/sh -c sed -i 's/E_ALL \& ~E_DEPRECATED \& ~E_STRICT/E_ALL \& ~E_DEPRECATED \& ~E_STRICT \& ~E_NOTICE \& ~E_WARNING/g' /etc/php83/php.ini # buildkit |
| VOLUME [/var/www/issuebot/tmp] |
| EXPOSE map[80/tcp:{}] |
| ENTRYPOINT ["/etc/start.sh"] |