63 lines
2.4 KiB
YAML
Raw Normal View History

2024-07-08 23:44:40 +02:00
services:
vouchervault:
2025-02-19 01:55:23 +01:00
image: l4rm4nd/vouchervault:1.12.x
2024-07-08 23:44:40 +02:00
container_name: vouchervault
environment:
2025-02-19 01:55:23 +01:00
# your FQDN or IP; multiple ones supported via comma delimiter
2024-08-05 10:28:47 +02:00
- 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
2024-07-29 04:23:34 +02:00
# ------- OPTIONAL OIDC AUTH --------
# Set to 'True' to enable OIDC authentication
#- OIDC_ENABLED=True
2025-02-19 01:56:39 +01:00
# Decide whether login area triggers automatic OIDC login flow
#- OIDC_AUTOLOGIN=False
2024-07-29 04:23:34 +02:00
# Set to 'True' to allow the creation of new users through OIDC
#- OIDC_CREATE_USER=True
# The signing algorithm used by the OIDC provider (e.g., RS256, HS256)
#- OIDC_RP_SIGN_ALGO=RS256
# URL of the JWKS endpoint for the OIDC provider
#- OIDC_OP_JWKS_ENDPOINT=https://authentik.example.com/application/o/vouchervault/jwks/
# Client ID for your OIDC RP
#- OIDC_RP_CLIENT_ID=vouchervault
# Client secret for your OIDC RP
#- OIDC_RP_CLIENT_SECRET=super-secure-secret-key
# Authorization endpoint URL of the OIDC provider
#- OIDC_OP_AUTHORIZATION_ENDPOINT=https://authentik.example.com/application/o/authorize/
# Token endpoint URL of the OIDC provider
#- OIDC_OP_TOKEN_ENDPOINT=https://authentik.example.com/application/o/token/
# User info endpoint URL of the OIDC provider
#- OIDC_OP_USER_ENDPOINT=https://authentik.example.com/application/o/userinfo/
2024-07-08 23:44:40 +02:00
restart: unless-stopped
expose:
- 8000
ports:
2024-07-28 02:27:30 +02:00
- 8000:8000
2024-07-08 23:44:40 +02:00
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/vouchervault/database:/opt/app/database
#networks:
# - proxy
#labels:
# - traefik.enable=true
# - traefik.docker.network=proxy
# - traefik.http.routers.vouchervault.rule=Host(`vouchervault.example.com`)
# - traefik.http.services.vouchervault.loadbalancer.server.port=8000
# # Optional part for traefik middlewares
# - traefik.http.routers.vouchervault.middlewares=local-ipwhitelist@file
redis:
2024-10-01 10:55:17 +02:00
image: redis:7-alpine
2024-11-23 15:08:26 +01:00
container_name: vouchervault-redis
2024-07-08 23:44:40 +02:00
restart: unless-stopped
#networks:
# - proxy
#networks:
# proxy:
# external: true