diff --git a/example/bookstack.nomad.hcl b/example/bookstack.nomad.hcl index 89819bb..db21c3d 100644 --- a/example/bookstack.nomad.hcl +++ b/example/bookstack.nomad.hcl @@ -80,7 +80,7 @@ job "bookstack" { driver = "docker" config { - image = "danielberteaud/bookstack:24.02.2-1" + image = "danielberteaud/bookstack:24.02.3-1" pids_limit = 100 readonly_rootfs = true volumes = ["secrets/bookstack.env:/app/.env"] diff --git a/example/images/bookstack/Dockerfile b/example/images/bookstack/Dockerfile index a14958f..d5094f9 100644 --- a/example/images/bookstack/Dockerfile +++ b/example/images/bookstack/Dockerfile @@ -1,7 +1,7 @@ -FROM danielberteaud/php:82.24.3-1 +FROM danielberteaud/php:82.24.4-1 MAINTAINER Daniel Berteaud -ARG BOOKSTACK_VERSION=24.02.2 +ARG BOOKSTACK_VERSION=24.02.3 ENV LANG=fr_FR.utf8 \ TZ=Europe/Paris \ @@ -13,7 +13,7 @@ ENV LANG=fr_FR.utf8 \ SESSION_SECURE_COOKIE=true USER root -COPY --from=danielberteaud/wkhtmltopdf:24.3-1 /usr/local/bin/wkhtmltopdf /usr/local/bin/wkhtmltopdf +COPY --from=danielberteaud/wkhtmltopdf:24.4-1 /usr/local/bin/wkhtmltopdf /usr/local/bin/wkhtmltopdf RUN set -euxo pipefail &&\ apk add --no-cache \ php${PHP_VERSION}-tokenizer \ diff --git a/variables.yml b/variables.yml index 2412651..9665733 100644 --- a/variables.yml +++ b/variables.yml @@ -6,7 +6,7 @@ instance: bookstack bookstack: # BookStack version - version: 24.02.2 + version: 24.02.3 # Docker image to use image: '[[ .docker.repo ]]bookstack:[[ .bookstack.version ]]-1'