Skip to content

Commit eefa308

Browse files
committed
Merge branch 'release/6.2.0'
2 parents 9ae20ba + 1a221f5 commit eefa308

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

fixtures/php/settings.php.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ if (getenv('REDIS_ENABLED')) {
4343
}
4444
}
4545
if (getenv('MEMCACHE_ENABLED')) {
46-
$settings['memcache']['servers'] = [getenv('MEMCACHE_HOST') . ':11211' => 'default'] ?: ['127.0.0.1:11211' => 'default'];
46+
$settings['memcache']['servers'] = getenv('MEMCACHE_HOST') ? [getenv('MEMCACHE_HOST') . ':11211' => 'default'] : ['127.0.0.1:11211' => 'default'];
4747
$settings['memcache']['bins'] = ['default' => 'default'];
4848
$settings['memcache']['key_prefix'] = '';
4949
// If we're not installing, include the memcache services.

scaffold/optional/docker-compose.linux.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,13 @@ services:
4747
extra_hosts:
4848
- host.docker.internal:host-gateway
4949
db:
50-
image: mariadb
50+
image: mariadb:lts
5151
environment:
5252
MYSQL_DATABASE: drupal
5353
MYSQL_USER: user
5454
MYSQL_PASSWORD: password
5555
MYSQL_ROOT_PASSWORD: super-secret-password
56+
command: --transaction-isolation=READ-COMMITTED
5657
networks:
5758
- default
5859

scaffold/optional/docker-compose.osx.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,14 @@ services:
5050
- PORT=9000
5151

5252
db:
53-
image: mariadb
53+
image: mariadb:lts
5454
network_mode: service:web
5555
environment:
5656
MYSQL_DATABASE: drupal
5757
MYSQL_USER: user
5858
MYSQL_PASSWORD: password
5959
MYSQL_ROOT_PASSWORD: super-secret-password
60+
command: --transaction-isolation=READ-COMMITTED
6061

6162
mail:
6263
image: axllent/mailpit

0 commit comments

Comments
 (0)