Skip to content

Commit e8d86b3

Browse files
committed
add php 8.3
1 parent babd5fa commit e8d86b3

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

recipes/php-8.3.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
title: "PHP 8.3"
2+
3+
actions:
4+
- merge: app/php83.yml
5+
dst: docker-compose.yml

recipes/pick-php.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,11 @@ title: "Wizard: PHP"
33
actions:
44
# Defines which app service to use (PHP version)
55
- prompt: 'Which PHP version do you want to use'
6-
default: 'PHP 8.1'
6+
default: 'PHP 8.2'
77
options:
8+
- name: 'PHP 8.3'
9+
actions:
10+
- recipe: php-8.3
811
- name: 'PHP 8.2'
912
actions:
1013
- recipe: php-8.2

templates/app/php83.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
services:
2+
app:
3+
image: kooldev/php:8.3-nginx
4+
ports:
5+
- "${KOOL_APP_PORT:-80}:80"
6+
environment:
7+
ASUSER: "${KOOL_ASUSER:-0}"
8+
UID: "${UID:-0}"
9+
volumes:
10+
- .:/app:delegated
11+
networks:
12+
- kool_local
13+
- kool_global

0 commit comments

Comments
 (0)