From 520af5b3a89123f2f810b432145276348a5968b8 Mon Sep 17 00:00:00 2001 From: Josh Knapp Date: Wed, 2 Oct 2024 08:58:42 -0700 Subject: [PATCH] Adding PHP 8.3 and updating README.md for moving repos --- README.md | 5 +++-- scripts/install-php83.sh | 6 ++++++ 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 scripts/install-php83.sh diff --git a/README.md b/README.md index 4098075..e4eb726 100644 --- a/README.md +++ b/README.md @@ -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__ diff --git a/scripts/install-php83.sh b/scripts/install-php83.sh new file mode 100644 index 0000000..9044670 --- /dev/null +++ b/scripts/install-php83.sh @@ -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 \ No newline at end of file