Skip to content

Commit

Permalink
docker-compose.yaml: use PHP 8.3 (#181)
Browse files Browse the repository at this point in the history
* docker-compose.yaml: use PHP 8.3

* Update README.md

* Rekindle spirit

* Apply php-cs-fixer changes

* Remove space

---------

Co-authored-by: mattamon <matthias.schuhmayer@pimcore.com>
Co-authored-by: mattamon <mattamon@users.noreply.github.com>
  • Loading branch information
3 people authored Jun 28, 2024
1 parent 3d32af6 commit 3d7b0d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ You don't need to have a PHP environment with composer installed.

### Follow these steps
1. Initialize the skeleton project using the `pimcore/pimcore` image
``docker run -u `id -u`:`id -g` --rm -v `pwd`:/var/www/html pimcore/pimcore:php8.2-latest composer create-project pimcore/skeleton my-project``
``docker run -u `id -u`:`id -g` --rm -v `pwd`:/var/www/html pimcore/pimcore:php8.3-latest composer create-project pimcore/skeleton my-project``

2. Go to your new project
`cd my-project/`
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ services:

php:
#user: '1000:1000' # set to your uid:gid
image: pimcore/pimcore:php8.2-debug-latest
image: pimcore/pimcore:php8.3-debug-latest
environment:
COMPOSER_HOME: /var/www/html
PHP_IDE_CONFIG: serverName=localhost
Expand All @@ -61,7 +61,7 @@ services:

supervisord:
#user: '1000:1000' # set to your uid:gid
image: pimcore/pimcore:php8.2-supervisord-latest
image: pimcore/pimcore:php8.3-supervisord-latest
depends_on:
rabbitmq:
condition: service_started
Expand Down

0 comments on commit 3d7b0d7

Please sign in to comment.