diff --git a/presets/laravel+octane/config.yml b/presets/laravel+octane/config.yml index 59f1f5db..107b23b2 100644 --- a/presets/laravel+octane/config.yml +++ b/presets/laravel+octane/config.yml @@ -13,14 +13,13 @@ create: - name: 'Swoole' actions: - scripts: - - docker pull -q kooldev/php:8.2-nginx - - docker pull -q kooldev/php:8.2-nginx-swoole - - kool docker kooldev/php:8.2-nginx-swoole composer create-project --no-install --no-scripts --prefer-dist laravel/laravel $CREATE_DIRECTORY + - docker pull -q kooldev/php:8.2-swoole + - kool docker kooldev/php:8.2-swoole composer create-project --no-install --no-scripts --prefer-dist laravel/laravel $CREATE_DIRECTORY - name: 'RoadRunner' actions: - scripts: - - docker pull -q kooldev/php:8.2-nginx - - kool docker kooldev/php:8.2-nginx composer create-project --no-install --no-scripts --prefer-dist laravel/laravel $CREATE_DIRECTORY + - docker pull -q kooldev/php:8.2-node + - kool docker kooldev/php:8.2-node composer create-project --no-install --no-scripts --prefer-dist laravel/laravel $CREATE_DIRECTORY # Preset defines the workflow for installing this preset in the current working directory preset: diff --git a/recipes/php-8.2-roadrunner.yml b/recipes/php-8.2-roadrunner.yml index f16fdb0a..9084e3f4 100644 --- a/recipes/php-8.2-roadrunner.yml +++ b/recipes/php-8.2-roadrunner.yml @@ -4,5 +4,5 @@ actions: - merge: app/php82-roadrunner.yml dst: docker-compose.yml - scripts: - - kool docker kooldev/php:8.2-nginx composer require laravel/octane spiral/roadrunner spiral/roadrunner-http spiral/roadrunner-cli - - kool docker kooldev/php:8.2-nginx php artisan octane:install --server=roadrunner --no-interaction + - kool docker kooldev/php:8.2-node composer require laravel/octane spiral/roadrunner spiral/roadrunner-http spiral/roadrunner-cli + - kool docker kooldev/php:8.2-node php artisan octane:install --server=roadrunner --no-interaction diff --git a/recipes/php-8.2-swoole.yml b/recipes/php-8.2-swoole.yml index f6143939..4e626b8b 100644 --- a/recipes/php-8.2-swoole.yml +++ b/recipes/php-8.2-swoole.yml @@ -4,5 +4,5 @@ actions: - merge: app/php82-swoole.yml dst: docker-compose.yml - scripts: - - kool docker kooldev/php:8.2-nginx-swoole composer require laravel/octane - - kool docker kooldev/php:8.2-nginx-swoole php artisan octane:install --server=swoole + - kool docker kooldev/php:8.2-swoole composer require laravel/octane + - kool docker kooldev/php:8.2-swoole php artisan octane:install --server=swoole diff --git a/templates/app/php82-roadrunner.yml b/templates/app/php82-roadrunner.yml index 7f83dae5..02243ef8 100644 --- a/templates/app/php82-roadrunner.yml +++ b/templates/app/php82-roadrunner.yml @@ -1,6 +1,6 @@ services: app: - image: kooldev/php:8.2-nginx + image: kooldev/php:8.2-node command: php artisan octane:start --server=roadrunner --host=0.0.0.0 --rpc-port=6001 --port=80 --watch --poll ports: - "${KOOL_APP_PORT:-80}:80" diff --git a/templates/app/php82-swoole.yml b/templates/app/php82-swoole.yml index bb0a9f0b..f6a7cd56 100644 --- a/templates/app/php82-swoole.yml +++ b/templates/app/php82-swoole.yml @@ -1,6 +1,6 @@ services: app: - image: kooldev/php:8.2-nginx-swoole + image: kooldev/php:8.2-swoole command: php artisan octane:start --server=swoole --host=0.0.0.0 --port=80 --watch --poll ports: - "${KOOL_APP_PORT:-80}:80" diff --git a/templates/scripts/laravel+octane+roadrunner.yml b/templates/scripts/laravel+octane+roadrunner.yml index 00a8e51e..1e6c0f2b 100644 --- a/templates/scripts/laravel+octane+roadrunner.yml +++ b/templates/scripts/laravel+octane+roadrunner.yml @@ -13,5 +13,5 @@ scripts: before-start: - kool docker kooldev/bash -c "cp .env.example .env" - - kool docker kooldev/php:8.1-nginx composer install - - kool docker kooldev/php:8.1-nginx php artisan key:generate + - kool docker kooldev/php:8.2-node composer install + - kool docker kooldev/php:8.2-node php artisan key:generate diff --git a/templates/scripts/laravel+octane+swoole.yml b/templates/scripts/laravel+octane+swoole.yml index 88bbbbe2..46eaba98 100644 --- a/templates/scripts/laravel+octane+swoole.yml +++ b/templates/scripts/laravel+octane+swoole.yml @@ -13,5 +13,5 @@ scripts: before-start: - kool docker kooldev/bash -c "cp .env.example .env" - - kool docker kooldev/php:8.1-nginx-swoole composer install - - kool docker kooldev/php:8.1-nginx-swoole php artisan key:generate + - kool docker kooldev/php:8.2-swoole composer install + - kool docker kooldev/php:8.2-swoole php artisan key:generate