Update for V2.0 #27

Merged
ryan merged 80 commits from 1.3 into main 2026-06-21 20:46:16 -04:00
Showing only changes of commit 4a1777d160 - Show all commits
+4 -1
View File
@@ -33,7 +33,8 @@ RUN docker-php-ext-install \
xml \
intl \
pdo_mysql \
pdo_pgsql
pdo_pgsql \
pdo_sqlite
RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" && \
php composer-setup.php --install-dir=/usr/local/bin --filename=composer && \
@@ -65,6 +66,7 @@ RUN echo "/var/log/sermon-notes.log {
}" > /etc/logrotate.d/sermon-notes
RUN COMPOSER_ALLOW_SUPERUSER=1 composer install --no-scripts --no-dev --optimize-autoloader
RUN /usr/local/bin/php bin/console asset-map:compile
RUN mkdir /data
RUN mkdir /var/www/html/var/cache
@@ -75,5 +77,6 @@ RUN find /var/www/html -type d -exec chmod 755 '{}' \;
RUN find /var/www/html -type f -exec chmod 644 '{}' \;
RUN chmod 755 /data
RUN chmod 644 /data/*
RUN a2enmod rewrite setenvif headers
EXPOSE 80