Update rendered example

This commit is contained in:
Daniel Berteaud 2024-02-11 21:22:37 +01:00
parent 65fa3398f6
commit ef0e75568b
2 changed files with 5 additions and 2 deletions

View File

@ -28,10 +28,12 @@ job "bookstack" {
proxy { proxy {
upstreams { upstreams {
destination_name = "mariadb" destination_name = "mariadb"
destination_type = "service"
local_bind_port = 3306 local_bind_port = 3306
} }
upstreams { upstreams {
destination_name = "smtp" destination_name = "smtp"
destination_type = "service"
local_bind_port = 25 local_bind_port = 25
} }
} }
@ -97,6 +99,7 @@ job "bookstack" {
policies = ["bookstack"] policies = ["bookstack"]
env = false env = false
disable_file = true disable_file = true
change_mode = "noop"
} }
# Use a template block instead of env {} so we can fetch values from vault # Use a template block instead of env {} so we can fetch values from vault

View File

@ -1,4 +1,4 @@
FROM danielberteaud/php:82.24.1-5 FROM danielberteaud/php:82.24.2-1
MAINTAINER Daniel Berteaud <dbd@ehtrace.com> MAINTAINER Daniel Berteaud <dbd@ehtrace.com>
ARG BOOKSTACK_VERSION=23.12.2 ARG BOOKSTACK_VERSION=23.12.2
@ -13,7 +13,7 @@ ENV LANG=fr_FR.utf8 \
SESSION_SECURE_COOKIE=true SESSION_SECURE_COOKIE=true
USER root 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 &&\ RUN set -euxo pipefail &&\
apk add --no-cache \ apk add --no-cache \
php${PHP_VERSION}-tokenizer \ php${PHP_VERSION}-tokenizer \