Skip to content

Commit

Permalink
Add PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
csandanov committed Dec 8, 2023
1 parent 84f28e8 commit ad4cea3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
7 changes: 4 additions & 3 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,15 @@ DB_DRIVER=mysql

# Linux (uid 1000 gid 1000)

PHP_TAG=8.2-dev-4.41.0
#PHP_TAG=8.1-dev-4.34.0
PHP_TAG=8.3-dev-4.41.0
#PHP_TAG=8.2-dev-4.41.0
#PHP_TAG=8.1-dev-4.41.0

# macOS (uid 501 gid 20)

#PHP_TAG=8.3-dev-macos-4.41.0
#PHP_TAG=8.2-dev-macos-4.41.0
#PHP_TAG=8.1-dev-macos-4.41.0
#PHP_TAG=8.0-dev-macos-4.41.0

### --- NGINX ----

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
test:
strategy:
matrix:
php_ver: [ '8.2','8.1' ]
php_ver: [ '8.3','8.2','8.1' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: test
env:
PHP_VER: ${{ matrix.php_ver }}
Expand All @@ -27,7 +27,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
needs: test
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: prepare artifact
run: cp docker.mk Makefile && tar -czf docker4php.tar.gz docker-compose.yml Makefile .env traefik.yml
- name: get tag name
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ include docker.mk

.PHONY: test

PHP_VER ?= 8.2
PHP_VER ?= 8.3

test:
cd ./tests && PHP_VER=$(PHP_VER) ./run.sh
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The PHP stack consist of the following containers:
|-----------------|-----------------------------|------------------------------------|---------------|--------------------|
| [Nginx] | 1.25, 1.24 | [wodby/nginx] |||
| [Apache] | 2.4 | [wodby/apache] || |
| [PHP] | 8.2, 8.1 | [wodby/php] |||
| [PHP] | 8.3, 8.2, 8.1 | [wodby/php] |||
| Crond | | [wodby/php] || |
| [MariaDB] | 11, 10.11, 10.6, 10.5, 10.4 | [wodby/mariadb] |||
| [PostgreSQL] | 16, 15, 14, 13, 12 | [wodby/postgres] || |
Expand Down

0 comments on commit ad4cea3

Please sign in to comment.