From 1b1bab77a258350a7a478af8ed1332fcbc8baab7 Mon Sep 17 00:00:00 2001 From: LRVT <21357789+l4rm4nd@users.noreply.github.com> Date: Mon, 5 Aug 2024 10:28:47 +0200 Subject: [PATCH] chore: update vouchervault --- examples/vouchervault/docker-compose.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/examples/vouchervault/docker-compose.yml b/examples/vouchervault/docker-compose.yml index d6ef06b..8099692 100644 --- a/examples/vouchervault/docker-compose.yml +++ b/examples/vouchervault/docker-compose.yml @@ -1,12 +1,17 @@ services: vouchervault: - image: l4rm4nd/vouchervault:1.3.x + image: l4rm4nd/vouchervault:1.5.x container_name: vouchervault environment: - - DOMAIN=vouchervault.example.com # your FQDN or IP; used to define ALLOWED_HOSTS and CSRF_TRUSTED_ORIGINS - - SECURE_COOKIES=False # set to True if you use a reverse proxy with tls; enables secure cookie flag and hsts - - EXPIRY_THRESHOLD_DAYS=90 # send notifications xx days prior expiry; default is 30 + # your FQDN or IP; used to define ALLOWED_HOSTS and CSRF_TRUSTED_ORIGINS + - DOMAIN=vouchervault.example.com + # set to True if you use a reverse proxy with tls; enables secure cookie flag and hsts + - SECURE_COOKIES=False + # send notifications xx days prior expiry + - EXPIRY_THRESHOLD_DAYS=90 + # define the timezone + - TZ=Europe/Berlin # ------- OPTIONAL OIDC AUTH -------- # Set to 'True' to enable OIDC authentication #- OIDC_ENABLED=True @@ -32,8 +37,6 @@ services: ports: - 8000:8000 volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/vouchervault/database:/opt/app/database #networks: # - proxy