From ef0e75568bbdaa95b80742cd1fc90894f9081feb Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Sun, 11 Feb 2024 21:22:37 +0100 Subject: [PATCH] Update rendered example --- example/bookstack.nomad.hcl | 3 +++ example/images/bookstack/Dockerfile | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/example/bookstack.nomad.hcl b/example/bookstack.nomad.hcl index 8638911..2db160b 100644 --- a/example/bookstack.nomad.hcl +++ b/example/bookstack.nomad.hcl @@ -28,10 +28,12 @@ job "bookstack" { proxy { upstreams { destination_name = "mariadb" + destination_type = "service" local_bind_port = 3306 } upstreams { destination_name = "smtp" + destination_type = "service" local_bind_port = 25 } } @@ -97,6 +99,7 @@ job "bookstack" { policies = ["bookstack"] env = false disable_file = true + change_mode = "noop" } # Use a template block instead of env {} so we can fetch values from vault diff --git a/example/images/bookstack/Dockerfile b/example/images/bookstack/Dockerfile index b07c6f5..ebe4b15 100644 --- a/example/images/bookstack/Dockerfile +++ b/example/images/bookstack/Dockerfile @@ -1,4 +1,4 @@ -FROM danielberteaud/php:82.24.1-5 +FROM danielberteaud/php:82.24.2-1 MAINTAINER Daniel Berteaud ARG BOOKSTACK_VERSION=23.12.2 @@ -13,7 +13,7 @@ ENV LANG=fr_FR.utf8 \ SESSION_SECURE_COOKIE=true USER root -COPY --from=danielberteaud/wkhtmltopdf:24.1-1 /usr/local/bin/wkhtmltopdf /usr/local/bin/wkhtmltopdf +COPY --from=danielberteaud/wkhtmltopdf:24.2-1 /usr/local/bin/wkhtmltopdf /usr/local/bin/wkhtmltopdf RUN set -euxo pipefail &&\ apk add --no-cache \ php${PHP_VERSION}-tokenizer \