Skip to content

Commit

Permalink
Merge branch 'release/6.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
pingers committed Jun 5, 2024
2 parents 9ae20ba + 1a221f5 commit eefa308
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fixtures/php/settings.php.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ if (getenv('REDIS_ENABLED')) {
}
}
if (getenv('MEMCACHE_ENABLED')) {
$settings['memcache']['servers'] = [getenv('MEMCACHE_HOST') . ':11211' => 'default'] ?: ['127.0.0.1:11211' => 'default'];
$settings['memcache']['servers'] = getenv('MEMCACHE_HOST') ? [getenv('MEMCACHE_HOST') . ':11211' => 'default'] : ['127.0.0.1:11211' => 'default'];
$settings['memcache']['bins'] = ['default' => 'default'];
$settings['memcache']['key_prefix'] = '';
// If we're not installing, include the memcache services.
Expand Down
3 changes: 2 additions & 1 deletion scaffold/optional/docker-compose.linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,13 @@ services:
extra_hosts:
- host.docker.internal:host-gateway
db:
image: mariadb
image: mariadb:lts
environment:
MYSQL_DATABASE: drupal
MYSQL_USER: user
MYSQL_PASSWORD: password
MYSQL_ROOT_PASSWORD: super-secret-password
command: --transaction-isolation=READ-COMMITTED
networks:
- default

Expand Down
3 changes: 2 additions & 1 deletion scaffold/optional/docker-compose.osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,14 @@ services:
- PORT=9000

db:
image: mariadb
image: mariadb:lts
network_mode: service:web
environment:
MYSQL_DATABASE: drupal
MYSQL_USER: user
MYSQL_PASSWORD: password
MYSQL_ROOT_PASSWORD: super-secret-password
command: --transaction-isolation=READ-COMMITTED

mail:
image: axllent/mailpit
Expand Down

0 comments on commit eefa308

Please sign in to comment.