diff --git docker-compose.yml docker-compose.yml
index 863cbd2ea9..c55ae00c9e 100644
|
|
|
services: |
| 32 | 32 | # The PHP container. |
| 33 | 33 | ## |
| 34 | 34 | php: |
| 35 | | image: wordpressdevelop/php:${LOCAL_PHP-latest} |
| | 35 | build: |
| | 36 | context: ../wpdev-docker-images/images/8.2/php/ |
| | 37 | dockerfile: Dockerfile |
| | 38 | tags: |
| | 39 | - local/php:8.2-fpm |
| 36 | 40 | |
| 37 | 41 | networks: |
| 38 | 42 | - wpdevnet |
| … |
… |
services: |
| 95 | 99 | # The WP CLI container. |
| 96 | 100 | ## |
| 97 | 101 | cli: |
| 98 | | image: wordpressdevelop/cli:${LOCAL_PHP-latest} |
| | 102 | build: |
| | 103 | context: ../wpdev-docker-images/images/8.2/cli/ |
| | 104 | dockerfile: Dockerfile |
| | 105 | args: |
| | 106 | PACKAGE_REGISTRY: local |
| | 107 | PR_TAG: |
| 99 | 108 | |
| 100 | 109 | networks: |
| 101 | 110 | - wpdevnet |