This commit is contained in:
f4ilji
2024-11-20 18:54:29 +05:00
parent dc1c175518
commit 431755ab9b
2 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ RUN apt-get update && apt-get install -y \
zip \
unzip \
git && \
docker-php-ext-configure gd --with-webp --with-jpeg --with-png && \
docker-php-ext-configure gd --with-webp --with-jpeg && \
docker-php-ext-install gd && \
docker-php-ext-install pdo_mysql && \
docker-php-ext-install bcmath && \
+9 -9
View File
@@ -23,15 +23,15 @@ services:
command: >
sh -c "php artisan inertia:start-ssr & php-fpm"
# php-queue:
# restart: always
# build:
# context: .
# dockerfile: _docker/app/Dockerfile
# volumes:
# - ./:/var/www
# container_name: ntspi-php-queue
# command: php artisan queue:work --tries=3 --timeout=90 # Настройте параметры по необходимости
php-queue:
restart: always
build:
context: .
dockerfile: _docker/app/Dockerfile
volumes:
- ./:/var/www
container_name: ntspi-php-queue
command: php artisan queue:work --tries=3 --timeout=90 # Настройте параметры по необходимости
db:
image: mysql:8.0