Skip to content

Commit 4a7f1a5

Browse files
committed
Reconcile master with 8.1-bullseye
1 parent c75320d commit 4a7f1a5

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.0-apache-bullseye
1+
FROM php:8.1-apache-bullseye
22

33
# So we can use it anywhere for conditional stuff. Keeping BC with old (non-buildkit, builders).
44
ARG TARGETPLATFORM

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ A Moodle PHP environment configured for Moodle development based on [Official PH
66

77
| PHP Version | Variant | Tags | Status | Notes |
88
|--------------|---------|------------------|--------|-------|
9+
| PHP 8.1 | Bullseye| 8.1, 8.1-bullseye| [![Test and publish 8.1](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml/badge.svg?branch=8.1-bullseye)](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml)|
910
| PHP 8.0 | Bullseye| 8.0, 8.0-bullseye| [![Test and publish 8.0](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml/badge.svg?branch=8.0-bullseye)](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml)|
1011
| PHP 7.4 | Bullseye| 7.4, 7.4-bullseye| [![Test and publish 7.4](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml/badge.svg?branch=7.4-bullseye)](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml)|
12+
| PHP 8.1 | Buster | 8.1-buster | [![Test and publish 8.1](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml/badge.svg?branch=8.1-buster)](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml)|
1113
| PHP 8.0 | Buster | 8.0-buster | [![Test and publish 8.0](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml/badge.svg?branch=8.0-buster)](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml)|
1214
| PHP 7.4 | Buster | 7.4-buster | [![Test and publish 7.4](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml/badge.svg?branch=7.4-buster)](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml)|
1315
| PHP 7.3 | Buster | 7.3, 7.3-buster | [![Test and publish 7.3](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml/badge.svg?branch=7.3-buster)](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml)|

root/tmp/setup/php-extensions.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ docker-php-ext-configure ldap
6464
docker-php-ext-install -j$(nproc) ldap
6565

6666
# APCu, igbinary, Memcached, MongoDB, Redis, Solr, uuid, XMLRPC (beta)
67-
pecl install apcu igbinary memcached mongodb redis solr uuid xmlrpc-beta pcov
68-
docker-php-ext-enable apcu igbinary memcached mongodb redis solr uuid xmlrpc pcov
67+
pecl install apcu igbinary memcached mongodb pcov redis solr uuid xmlrpc-beta
68+
docker-php-ext-enable apcu igbinary memcached mongodb pcov redis solr uuid xmlrpc
6969

7070
echo 'apc.enable_cli = On' >> /usr/local/etc/php/conf.d/docker-php-ext-apcu.ini
7171

root/tmp/setup/sqlsrv-extension.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
2+
33
set -e
44

55
# Install Microsoft dependencies for sqlsrv
@@ -14,6 +14,6 @@ ACCEPT_EULA=Y apt-get install -y msodbcsql17
1414

1515
ln -fsv /opt/mssql-tools/bin/* /usr/bin
1616

17-
# Need 5.9.0preview1 (or later) for PHP 8.0 support
18-
pecl install sqlsrv-5.9.0
17+
# Need 5..10.0beta1 (or later) for PHP 8.1 support
18+
pecl install sqlsrv-5.10.0beta2
1919
docker-php-ext-enable sqlsrv

0 commit comments

Comments
 (0)