Compare commits
3
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
33f9ca082a | ||
|
|
5cef6189ba | ||
|
|
3939dfbea4 |
+14
-2
@@ -52,7 +52,18 @@ RUN --mount=type=cache,target=/var/cache/apt \
|
|||||||
RUN a2enmod rewrite
|
RUN a2enmod rewrite
|
||||||
|
|
||||||
# Install PHP extensions
|
# Install PHP extensions
|
||||||
RUN docker-php-ext-install pdo_mysql pgsql pdo_pgsql zip opcache pcntl sockets
|
RUN docker-php-ext-install \
|
||||||
|
pdo_mysql \
|
||||||
|
pgsql \
|
||||||
|
pdo_pgsql \
|
||||||
|
zip \
|
||||||
|
opcache \
|
||||||
|
pcntl \
|
||||||
|
sockets\
|
||||||
|
bcmath \
|
||||||
|
soap \
|
||||||
|
gd
|
||||||
|
|
||||||
RUN docker-php-ext-enable imagick
|
RUN docker-php-ext-enable imagick
|
||||||
|
|
||||||
# PHP
|
# PHP
|
||||||
@@ -76,7 +87,8 @@ opcache.fast_shutdown=1' >> "$PHP_INI_DIR/conf.d/opcache.ini"
|
|||||||
|
|
||||||
#SUPERVISORD
|
#SUPERVISORD
|
||||||
RUN mkdir -p /var/log/supervisor
|
RUN mkdir -p /var/log/supervisor
|
||||||
COPY supervisor/ /etc/supervisor/
|
COPY ./supervisor/supervisord.conf /etc/supervisor/supervisord.conf
|
||||||
|
COPY ./supervisor/conf.d/laravel-queues.conf /etc/supervisor/conf.d/laravel-queues.conf
|
||||||
|
|
||||||
# Setup Crone
|
# Setup Crone
|
||||||
RUN mkdir -p /var/log/cron && \
|
RUN mkdir -p /var/log/cron && \
|
||||||
|
|||||||
Reference in New Issue
Block a user