Skip to content

Commit

Permalink
Merge branch 'hotfix/1.17.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Oct 13, 2023
2 parents bb3c8f6 + ec9cbbb commit dcd75a1
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .docker/cli.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# @see https://hub.docker.com/r/uselagoon/php-8.1-cli-drupal/tags
# @see https://github.com/uselagoon/lagoon-images/tree/main/images/php-cli-drupal
FROM uselagoon/php-8.1-cli-drupal:23.9.0
FROM uselagoon/php-8.1-cli-drupal:23.10.0

# Add missing variables.
# @todo Remove once https://github.com/uselagoon/lagoon/issues/3121 is resolved.
Expand Down
2 changes: 1 addition & 1 deletion .docker/mariadb.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# @see https://github.com/drevops/mariadb-drupal-data
#
# The ARG value will be updated with a value passed from docker-compose.yml
ARG IMAGE=uselagoon/mariadb-drupal:23.9.0
ARG IMAGE=uselagoon/mariadb-drupal:23.10.0

# hadolint ignore=DL3006
FROM ${IMAGE}
Expand Down
2 changes: 1 addition & 1 deletion .docker/nginx-drupal.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ FROM ${CLI_IMAGE:-cli} as cli

# @see https://hub.docker.com/r/uselagoon/nginx-drupal/tags?page=1
# @see https://github.com/uselagoon/lagoon-images/tree/main/images/nginx-drupal
FROM uselagoon/nginx-drupal:23.9.0
FROM uselagoon/nginx-drupal:23.10.0

# Webroot is used for Nginx docroot configuration.
ARG WEBROOT=web
Expand Down
2 changes: 1 addition & 1 deletion .docker/php.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ FROM ${CLI_IMAGE:-cli} as cli

# @see https://hub.docker.com/r/uselagoon/php-7.4-fpm/tags
# @see https://github.com/uselagoon/lagoon-images/tree/main/images/php-fpm
FROM uselagoon/php-8.1-fpm:23.9.0
FROM uselagoon/php-8.1-fpm:23.10.0

RUN apk add --no-cache tzdata=2023c-r1

Expand Down
2 changes: 1 addition & 1 deletion .docker/solr.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ FROM ${CLI_IMAGE} as cli

# @see https://hub.docker.com/r/uselagoon/solr/tags?page=1&name=drupal
# @see https://github.com/uselagoon/lagoon-images/blob/main/images/solr-drupal/7.Dockerfile
FROM uselagoon/solr-7-drupal:23.9.0
FROM uselagoon/solr-7-drupal:23.10.0

# Based off search_api_solr/solr-conf-templates/7.x as a sane default.
# @see https://git.drupalcode.org/project/search_api_solr/-/tree/4.x/solr-conf-templates/7.x
Expand Down
4 changes: 2 additions & 2 deletions .drevops/tests/bats/fixtures/docker-compose.env.json
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
"mariadb": {
"build": {
"args": {
"IMAGE": "uselagoon/mariadb-drupal:23.9.0"
"IMAGE": "uselagoon/mariadb-drupal:23.10.0"
},
"context": "FIXTURE_CUR_DIR",
"dockerfile": ".docker/mariadb.dockerfile"
Expand Down Expand Up @@ -320,7 +320,7 @@
"redis": {
"command": null,
"entrypoint": null,
"image": "uselagoon/redis-6:23.9.0",
"image": "uselagoon/redis-6:23.10.0",
"labels": {
"lagoon.type": "redis"
},
Expand Down
2 changes: 1 addition & 1 deletion .drevops/tests/bats/fixtures/docker-compose.env_mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@
"redis": {
"command": null,
"entrypoint": null,
"image": "uselagoon/redis-6:23.9.0",
"image": "uselagoon/redis-6:23.10.0",
"labels": {
"lagoon.type": "redis"
},
Expand Down
4 changes: 2 additions & 2 deletions .drevops/tests/bats/fixtures/docker-compose.noenv.json
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
"mariadb": {
"build": {
"args": {
"IMAGE": "uselagoon/mariadb-drupal:23.9.0"
"IMAGE": "uselagoon/mariadb-drupal:23.10.0"
},
"context": "FIXTURE_CUR_DIR",
"dockerfile": ".docker/mariadb.dockerfile"
Expand Down Expand Up @@ -320,7 +320,7 @@
"redis": {
"command": null,
"entrypoint": null,
"image": "uselagoon/redis-6:23.9.0",
"image": "uselagoon/redis-6:23.10.0",
"labels": {
"lagoon.type": "redis"
},
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ services:
context: .
dockerfile: .docker/mariadb.dockerfile
args:
IMAGE: "${DREVOPS_DB_DOCKER_IMAGE:-uselagoon/mariadb-drupal:23.9.0}" # Use custom database image (if defined) or fallback to standard database image.
IMAGE: "${DREVOPS_DB_DOCKER_IMAGE:-uselagoon/mariadb-drupal:23.10.0}" # Use custom database image (if defined) or fallback to standard database image.
<<: *default-user
environment:
<<: *default-environment
Expand All @@ -164,7 +164,7 @@ services:

#;< REDIS
redis:
image: uselagoon/redis-6:23.9.0
image: uselagoon/redis-6:23.10.0
#;< LAGOON
labels:
lagoon.type: redis # Change to 'none' if dedicated Redis service is used. See https://docs.lagoon.sh/using-lagoon-advanced/service-types/
Expand Down

0 comments on commit dcd75a1

Please sign in to comment.