Skip to content

Commit 447499a

Browse files
committed
✨ add php 8.4
1 parent 281e4c2 commit 447499a

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
php: [ '8.0', '8.1', '8.2', '8.3' ]
17+
php: [ '8.0', '8.1', '8.2', '8.3', '8.4' ]
1818
webserver: [ 'apache', 'nginx' ]
1919
distroAddon: [ '', '-alpine' ]
2020
steps:

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ We recommend using [pluswerk/docker-global](https://github.com/pluswerk/docker-g
66

77
# Tags
88

9-
- php versions supported: `8.0`-`8.3`
9+
- php versions supported: `8.0`-`8.4`
1010
- php versions unsupported: `5.6`-`7.4`
1111
- webserver supported: `nginx` and `apache`
1212
- alpine images: `-alpine`
1313
- examples
14-
- `pluswerk/php-dev:nginx-8.3-alpine`
14+
- `pluswerk/php-dev:nginx-8.4-alpine`
1515
- `pluswerk/php-dev:apache-8.0-alpine`
1616
- `pluswerk/php-dev:nginx-8.2`
1717
- list of [all Tags](https://github.com/pluswerk/php-dev/pkgs/container/php-dev/versions?filters%5Bversion_type%5D=tagged)
@@ -56,7 +56,7 @@ Example file: compose/Development/docker-compose.yml
5656
```yaml
5757
services:
5858
web:
59-
image: pluswerk/php-dev:nginx-8.3-alpine
59+
image: pluswerk/php-dev:nginx-8.4-alpine
6060

6161
volumes:
6262
- .:/app
@@ -68,32 +68,32 @@ services:
6868

6969
environment:
7070
# Take a look at VIRTUAL_* in the documentation under Nginx Reverse Proxy
71-
- VIRTUAL_HOST=docker-website.${TLD_DOMAIN:?TLD_DOMAIN is required},sub.docker-website.${TLD_DOMAIN:?TLD_DOMAIN is required}
72-
# - HTTPS_METHOD=noredirect
71+
VIRTUAL_HOST: docker-website.${TLD_DOMAIN:?TLD_DOMAIN is required},sub.docker-website.${TLD_DOMAIN:?TLD_DOMAIN is required}
72+
# HTTPS_METHOD: noredirect
7373

74-
- WEB_DOCUMENT_ROOT=/app/public
75-
- XDEBUG_CLIENT_HOST=${XDEBUG_CLIENT_HOST:-}
76-
- php.xdebug.idekey=${XDEBUG_IDEKEY:-PHPSTORM}
77-
- PHP_IDE_CONFIG=${XDEBUG_IDEKEY:-"serverName=_"}
74+
WEB_DOCUMENT_ROOT: /app/public
75+
XDEBUG_CLIENT_HOST: ${XDEBUG_CLIENT_HOST:-}
76+
php.xdebug.idekey: ${XDEBUG_IDEKEY:-PHPSTORM}
77+
PHP_IDE_CONFIG: ${XDEBUG_IDEKEY:-"serverName=_"}
7878

7979
# Project Env vars (enable what you need)
80-
# - APP_ENV=development_docker
81-
# - PIMCORE_ENVIRONMENT=development_docker
82-
# - TYPO3_CONTEXT=Development/docker
80+
# APP_ENV: development_docker
81+
# PIMCORE_ENVIRONMENT: development_docker
82+
# TYPO3_CONTEXT: Development/docker
8383

8484
# Don't forget to connect via bash start.sh
85-
- APPLICATION_UID=${APPLICATION_UID:-1000}
86-
- APPLICATION_GID=${APPLICATION_GID:-1000}
85+
APPLICATION_UID: ${APPLICATION_UID:-1000}
86+
APPLICATION_GID: ${APPLICATION_GID:-1000}
8787

8888
node:
89-
image: node:18
89+
image: node:24
9090
volumes:
9191
- ./:/app
9292
working_dir: /app
9393
environment:
9494
# Don't forget to connect via bash start.sh
95-
- APPLICATION_UID=${APPLICATION_UID:-1000}
96-
- APPLICATION_GID=${APPLICATION_GID:-1000}
95+
APPLICATION_UID: ${APPLICATION_UID:-1000}
96+
APPLICATION_GID: ${APPLICATION_GID:-1000}
9797
stop_signal: SIGKILL
9898
entrypoint: bash -c 'groupmod -g $$APPLICATION_GID node; usermod -u $$APPLICATION_UID node; sleep infinity'
9999

0 commit comments

Comments
 (0)