Skip to content

Commit

Permalink
Merge branch 'feature/refactor-installer-question-manager' into featu…
Browse files Browse the repository at this point in the history
…re/refactor-installer-question-manager-update
  • Loading branch information
AlexSkrypnyk committed Feb 3, 2024
2 parents 05ff30d + 5bbbaa5 commit 5b14ffd
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ aliases:
# This container has all the necessary tools to run a dockerized environment.
# @see https://github.com/drevops/ci-runner
# @see https://hub.docker.com/repository/docker/drevops/ci-runner/tags?page=1&ordering=last_updated
- image: drevops/ci-runner:23.12.0
- image: drevops/ci-runner:24.1.0
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
Expand Down
4 changes: 2 additions & 2 deletions .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.2-cli-drupal/tags
# @see https://github.com/uselagoon/lagoon-images/tree/main/images/php-cli-drupal
FROM uselagoon/php-8.2-cli-drupal:23.12.0
FROM uselagoon/php-8.2-cli-drupal:24.1.0

# Add missing variables.
# @todo Remove once https://github.com/uselagoon/lagoon/issues/3121 is resolved.
Expand Down Expand Up @@ -38,7 +38,7 @@ ENV WEBROOT=${WEBROOT} \
# reduce build time.

# Adding more tools.
RUN apk add --no-cache ncurses=6.4_p20230506-r0 pv=1.6.20-r1 tzdata=2023d-r0
RUN apk add --no-cache ncurses=6.4_p20231125-r0 pv=1.8.5-r0 tzdata=2024a-r0

# Adding patches and scripts.
COPY patches /app/patches
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.12.0
ARG IMAGE=uselagoon/mariadb-drupal:24.1.0

# hadolint ignore=DL3006
FROM ${IMAGE}
Expand Down
4 changes: 2 additions & 2 deletions .docker/nginx-drupal.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ 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.12.0
FROM uselagoon/nginx-drupal:24.1.0

# Webroot is used for Nginx docroot configuration.
ARG WEBROOT=web
ENV WEBROOT=${WEBROOT}

RUN apk add --no-cache tzdata=2023d-r0
RUN apk add --no-cache tzdata=2024a-r0

COPY --from=cli /app /app
4 changes: 2 additions & 2 deletions .docker/php.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ FROM ${CLI_IMAGE:-cli} as cli

# @see https://hub.docker.com/r/uselagoon/php-8.2-fpm/tags
# @see https://github.com/uselagoon/lagoon-images/tree/main/images/php-fpm
FROM uselagoon/php-8.2-fpm:23.12.0
FROM uselagoon/php-8.2-fpm:24.1.0

RUN apk add --no-cache tzdata=2023d-r0
RUN apk add --no-cache tzdata=2024a-r0

COPY --from=cli /app /app
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-8/tags
# @see https://github.com/uselagoon/lagoon-images/blob/main/images/solr/8.Dockerfile
FROM uselagoon/solr-8:23.12.0
FROM uselagoon/solr-8:24.1.0

# Solr Jump-start config needs to be manually copied from search_api_solr module
# /app/docroot/modules/contrib/search_api_solr/jump-start/solr8/config-set.
Expand Down
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.2-cli-drupal/tags
# @see https://github.com/uselagoon/lagoon-images/tree/main/images/php-cli-drupal
FROM uselagoon/php-8.2-cli-drupal:23.12.0
FROM uselagoon/php-8.2-cli-drupal:24.1.0

# Add missing variables.
# @todo Remove once https://github.com/uselagoon/lagoon/issues/3121 is resolved.
Expand Down Expand Up @@ -38,7 +38,7 @@ ENV WEBROOT=${WEBROOT} \
# reduce build time.

# Adding more tools.
RUN apk add --no-cache ncurses=6.4_p20230506-r0 pv=1.6.20-r1 tzdata=2023c-r1
RUN apk add --no-cache ncurses=6.4_p20231125-r0 pv=1.8.5-r0 tzdata=2023c-r1

# Adding patches and scripts.
COPY patches /app/patches
Expand Down
4 changes: 0 additions & 4 deletions .drevops/tests/bats/fixtures/docker-compose.env.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"name": "amazeeio-network"
},
"default": {
"external": false,
"ipam": [],
"name": "star_wars_default"
}
Expand Down Expand Up @@ -409,15 +408,12 @@
},
"volumes": {
"app": {
"external": false,
"name": "star_wars_app"
},
"files": {
"external": false,
"name": "star_wars_files"
},
"solr": {
"external": false,
"name": "star_wars_solr"
}
}
Expand Down
4 changes: 0 additions & 4 deletions .drevops/tests/bats/fixtures/docker-compose.env_mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"name": "amazeeio-network"
},
"default": {
"external": false,
"ipam": [],
"name": "the_matrix_default"
}
Expand Down Expand Up @@ -409,15 +408,12 @@
},
"volumes": {
"app": {
"external": false,
"name": "the_matrix_app"
},
"files": {
"external": false,
"name": "the_matrix_files"
},
"solr": {
"external": false,
"name": "the_matrix_solr"
}
}
Expand Down
4 changes: 0 additions & 4 deletions .drevops/tests/bats/fixtures/docker-compose.noenv.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"name": "amazeeio-network"
},
"default": {
"external": false,
"ipam": [],
"name": "star_wars_default"
}
Expand Down Expand Up @@ -409,15 +408,12 @@
},
"volumes": {
"app": {
"external": false,
"name": "star_wars_app"
},
"files": {
"external": false,
"name": "star_wars_files"
},
"solr": {
"external": false,
"name": "star_wars_solr"
}
}
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ services:
context: .
dockerfile: .docker/mariadb.dockerfile
args:
IMAGE: "${DREVOPS_DB_DOCKER_IMAGE:-uselagoon/mariadb-drupal:23.12.0}" # Use custom database image (if defined) or fallback to standard database image.
IMAGE: "${DREVOPS_DB_DOCKER_IMAGE:-uselagoon/mariadb-drupal:24.1.0}" # Use custom database image (if defined) or fallback to standard database image.
<<: *default-user
environment:
<<: *default-environment
Expand All @@ -165,7 +165,7 @@ services:

#;< REDIS
redis:
image: uselagoon/redis-6:23.12.0
image: uselagoon/redis-6:24.1.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 5b14ffd

Please sign in to comment.