Push to github
Some checks failed
Docker / Push (push) Has been cancelled

This commit is contained in:
Derek1256 2025-03-10 02:55:17 +00:00
parent 6a75caa68e
commit 52967b2874
12 changed files with 31 additions and 19 deletions

View file

@ -32,10 +32,10 @@ RUN rm /usr/local/etc/php-fpm.conf \
&& sed -i s/ssl_session_cache/#ssl_session_cache/g /etc/nginx/nginx.conf \
&& mkdir -p /var/run/php /var/run/nginx
COPY .github/docker/default.conf /etc/nginx/http.d/default.conf
COPY .github/docker/www.conf /usr/local/etc/php-fpm.conf
COPY .github/docker/supervisord.conf /etc/supervisord.conf
COPY .forgejo/docker/default.conf /etc/nginx/http.d/default.conf
COPY .forgejo/docker/www.conf /usr/local/etc/php-fpm.conf
COPY .forgejo/docker/supervisord.conf /etc/supervisord.conf
EXPOSE 80 443
ENTRYPOINT [ "/bin/ash", ".github/docker/entrypoint.sh" ]
ENTRYPOINT [ "/bin/ash", ".forgejo/docker/entrypoint.sh" ]
CMD [ "supervisord", "-n", "-c", "/etc/supervisord.conf" ]