Skip to content

Commit e036ffc

Browse files
Merge pull request #18 from craftcms/8.3
Correct ini file location
2 parents c28b645 + 77f5058 commit e036ffc

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ RUN export DEBIAN_FRONTEND=noninteractive \
7575
COPY etc/supervisord.conf /etc/supervisord.conf
7676
COPY etc/supervisord.d /etc/supervisord.d
7777
COPY etc/php-fpm/php-fpm.conf /etc/php-fpm.conf
78-
COPY etc/php.d/60-craftcms.ini /etc/php.d/60-craftcms.ini
78+
COPY etc/php.d/60-craftcms.ini /etc/php/${php_version}/fpm/conf.d/60-craftcms.ini
79+
COPY etc/php.d/60-craftcms.ini /etc/php/${php_version}/cli/conf.d/60-craftcms.ini
7980

8081
# set a friendly path for php-fpm that does not have the version
8182
RUN update-alternatives --install /usr/sbin/php-fpm php-fpm /usr/sbin/php-fpm${php_version} 1

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
IMAGE ?= craftcms/image
2-
PHP_VERSION ?= 8.2
2+
PHP_VERSION ?= 8.3
33
UBUNTU_VERSION ?= 22.04
44
TAG ?= ${PHP_VERSION}
55

@@ -26,4 +26,4 @@ create-project:
2626
composer create-project craftcms/craft examples/craftcms/local
2727

2828
shell:
29-
docker run --rm -it ubuntu:${UBUNTU_VERSION} /bin/bash
29+
docker run --rm -it ubuntu:${UBUNTU_VERSION} /bin/bash

0 commit comments

Comments
 (0)