Merge pull request 'Adding PHP 8.3 and updating README.md for moving repos' (#10) from add-php83 into trunk
All checks were successful
Cloud Apache Container / Build-and-Push (push) Successful in 33s

Reviewed-on: #10
This commit is contained in:
jknapp 2024-10-02 16:02:24 +00:00
commit f1ab086228
2 changed files with 9 additions and 2 deletions

View File

@ -6,7 +6,7 @@ This is the base container for running PHP based applications. Select the PHP v
__You can pull this image locally by running:__
```console
docker pull public.ecr.aws/s1f6k4w4/cac:latest
docker pull repo.anhonesthost.net/cloud-hosting-platform/cac:latest
```
__You can then run a development version of the server by running the following commands:__
@ -46,7 +46,8 @@ The database credentials are shown in the /var/lib/mysql/creds file, which we ha
*74* - PHP 7.4
*80* - PHP 8.0
*81* - PHP 8.1
*82* - PHP 8.2
*82* - PHP 8.2
*83* - PHP 8.3
### Environment Variables ###
__Required Tags__

6
scripts/install-php83.sh Normal file
View File

@ -0,0 +1,6 @@
#!/bin/bash
dnf module enable php:remi-8.3 -y
dnf install -y php php-fpm php-mysqlnd php-xml php-pecl-zip php-sodium php-soap php-pecl-xmlrpc \
php-pecl-redis5 php-pecl-memcached php-pecl-memcache php-pecl-ip2location php-pecl-imagick php-pecl-geoip \
php-mysqlnd php-mbstring php-intl php-gd libzip php-cli
exit 0