From 8700e484f8d9472d312bded9cf528fb2d4b88ecd Mon Sep 17 00:00:00 2001 From: oliver Date: Tue, 15 Apr 2025 22:43:07 +0200 Subject: [PATCH] =?UTF-8?q?vernissage/docker=5Fvernissage=5Ffull.yaml=20hi?= =?UTF-8?q?nzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vernissage/docker_vernissage_full.yaml | 68 ++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 vernissage/docker_vernissage_full.yaml diff --git a/vernissage/docker_vernissage_full.yaml b/vernissage/docker_vernissage_full.yaml new file mode 100644 index 0000000..e5bab52 --- /dev/null +++ b/vernissage/docker_vernissage_full.yaml @@ -0,0 +1,68 @@ +######################################################################## +# SERVER + +# the address under which your Vernissage server is accessible on the internet +VERNISSAGE_BASEADDRESS=https://vernissage.your.tld + +# connection string to your postgres database +# in the format postgres://user:password@host:port/database +# if omited Vernissage creates a local sqlite database (not recommended) +VERNISSAGE_CONNECTIONSTRING=postgres://vernissage:vernissagedbpassword@vernissage-db:5432/vernissage + +# api url to your S3 storage +# if omited Vernissage uses a local storage directory (not recommended) +VERNISSAGE_S3ADDRESS=s3.yourhost.tld + +# region of your S3 bucket in Amazon AWS +# if set VERNISSAGE_S3ADDRESS is overwritten to connect to Amazon AWS +# VERNISSAGE_S3REGION= + +# name of your S3 bucket +VERNISSAGE_S3BUCKET=vernissage + +# accesskey and secret to your S3 storage +VERNISSAGE_S3ACCESSKEYID=YourS3AccessKey +VERNISSAGE_S3SECRETACCESSKEY=YourS3SecretAccessKey + +# connection string to your redis server +# no need to change if the preconfigured redis from docker-compose.yml is used +VERNISSAGE_QUEUEURL=redis://vernissage-redis.internal:6379 + +# set to debug to increase the log output +#LOG_LEVEL=debug + + +######################################################################## +# WEB + +# adress to add to the Content-Security-Policy-headers to access files +# on your S3 storage. Normaly the same as VERNISSAGE_S3ADDRESS +VERNISSAGE_CSP_IMG=s3.yourhost.tld + + +######################################################################## +# PROXY + +# exposed port under which the proxy will be accessible. mostly used for +# a nginx reverse proxy configuration on the host. default: 8080 +EXPOSED_PORT=8080 + + +######################################################################## +# PUSH + +# random, password like string +# must be the same as in "WebPush service secret key" from /settings +VPUSH_KEY=YourVPushKey + + +######################################################################## +# GLOBAL + +# tag ("version") of docker containers to use. defaults to "latest" +# `docker compose pull` after changing this value +DOCKER_TAG=latest + +# subnet for internaly used IPv6 adresses +# defaults to 2001:db8::/64 +#IPV6_SUBNET=2001:db8::/64 \ No newline at end of file