perbaikan auto create lembar kendali ketika baca

This commit is contained in:
2024-08-21 15:16:17 +07:00
parent 2ec3142aea
commit 12ef53f0af
88 changed files with 995 additions and 1040 deletions

View File

@@ -18,22 +18,22 @@ RUN docker-php-ext-configure intl && docker-php-ext-install intl
COPY ./_docker/php-fpm/www.conf /usr/local/etc/php-fpm.d/zz-docker.conf
COPY ./_docker/php-fpm/php.ini /usr/local/etc/php/conf.d
COPY ./_docker/php-fpm/opcache.ini /usr/local/etc/php/conf.d/opcache.ini
COPY ./_docker/php-fpm/session.ini /usr/local/etc/php/conf.d/session.ini
# COPY ./_docker/php-fpm/session.ini /usr/local/etc/php/conf.d/session.ini
# Copy nginx-configs
COPY ./_docker/nginx/app.conf /etc/nginx/conf.d/default.conf
COPY ./_docker/nginx/nginx.conf /etc/nginx/nginx.conf
COPY ./_docker/nginx/footer.conf /etc/nginx/footer.conf
# COPY ./_docker/nginx/footer.conf /etc/nginx/footer.conf
# Copy supervisord config
COPY ./_docker/supervisord/supervisord.conf /etc/supervisord.conf
COPY ./_docker/supervisord/init.sh /init.sh
# COPY ./_docker/supervisord/init.sh /init.sh
COPY --chown=www-data:www-data ./src .
# COPY --chown=www-data:www-data ./src .
ARG APP_VERSION
ENV APP_VERSION=$APP_VERSION
EXPOSE 80
ENTRYPOINT [ "/init.sh" ]
# ENTRYPOINT [ "/init.sh" ]
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisord.conf"]