diff --git a/example/bookstack.nomad.hcl b/example/bookstack.nomad.hcl index a1f15ee..a60ae1b 100644 --- a/example/bookstack.nomad.hcl +++ b/example/bookstack.nomad.hcl @@ -1,6 +1,7 @@ job "bookstack" { datacenters = ["dc1"] + region = "global" group "bookstack" { @@ -77,7 +78,7 @@ job "bookstack" { driver = "docker" config { - image = "danielberteaud/bookstack:23.12.2-2" + image = "danielberteaud/bookstack:23.12.3-2" 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 ebe4b15..828f40e 100644 --- a/example/images/bookstack/Dockerfile +++ b/example/images/bookstack/Dockerfile @@ -1,7 +1,7 @@ FROM danielberteaud/php:82.24.2-1 MAINTAINER Daniel Berteaud -ARG BOOKSTACK_VERSION=23.12.2 +ARG BOOKSTACK_VERSION=23.12.3 ENV LANG=fr_FR.utf8 \ TZ=Europe/Paris \ diff --git a/variables.yml b/variables.yml index 017647c..eb0b4ed 100644 --- a/variables.yml +++ b/variables.yml @@ -6,7 +6,7 @@ instance: bookstack bookstack: # BookStack version - version: 23.12.2 + version: 23.12.3 # Docker image to use image: '[[ .docker.repo ]]bookstack:[[ .bookstack.version ]]-2'