Added a few more env variables

This commit is contained in:
Aleksandr Vasilenko
2024-10-24 10:06:28 -05:00
parent d504df431a
commit 20d821585c

View File

@@ -12,12 +12,16 @@ services:
environment:
# FQDN will be proxied to port 30000
- SERVICE_FQDN_FOUNDRY_30000
# Version of Foundry Virtual Tabletop to install i.e. 12.331
- FOUNDRY_VERSION=${FOUNDRY_VERSION:-12.331}
# Account username or email address for foundryvtt.com. Required for downloading an application distribution.
- FOUNDRY_USERNAME=${FOUNDRY_USERNAME}
# Account password for foundryvtt.com. Required for downloading an application distribution.
- FOUNDRY_PASSWORD=${FOUNDRY_PASSWORD}
# The presigned URL generate from the user's profile. Required for downloading an application distribution if username/password are not provided.
- FOUNDRY_RELEASE_URL=${FOUNDRY_RELEASE_URL}
# The license key to install. e.g.; AAAA-BBBB-CCCC-DDDD-EEEE-FFFF If left unset, a license key will be fetched when using account authentication.
- FOUNDRY_LICENSE_KEY=${FOUNDRY_LICENSE_KEY}
# Admin password to be applied at startup. If omitted the admin password will be cleared.
- FOUNDRY_ADMIN_KEY=${FOUNDRY_ADMIN:-atropos}
# A custom hostname to use in place of the host machine's public IP address when displaying the address of the game session. This allows for reverse proxies or DNS servers to modify the public address. Example: foundry.example.com
@@ -28,13 +32,15 @@ services:
- FOUNDRY_PROXY_PORT=${FOUNDRY_PROXY_PORT:-80}
# Indicates whether the software is running behind a reverse proxy that uses SSL. This allows invitation links and A/V functionality to work as if the Foundry server had SSL configured directly.
- FOUNDRY_PROXY_SSL=${FOUNDRY_PROXY_SSL:-true}
# An absolute or relative path that points to the awsConfig.json or true for AWS environment variable credentials evaluation usage.
- FOUNDRY_AWS_CONFIG=${FOUNDRY_AWS_CONFIG}
# The default application language and module which provides the core translation files.
- FOUNDRY_LANGUAGE=${FOUNDRY_LANGUAGE:-en.core}
# Choose the CSS theme for the setup page. Choose from foundry, fantasy, or scifi.
- FOUNDRY_CSS_THEME=${FOUNDRY_CSS_THEME:-foundry}
# Set to true to reduce network traffic by serving minified static JavaScript and CSS files. Enabling this setting is recommended for most users, but module developers may wish to disable it.
- FOUNDRY_MINIFY_STATIC_FILES=${FOUNDRY_MINIFY_STATIC_FILES:-true}
# The world to startup at system start.
# The world ID to startup at system start.
- FOUNDRY_WORLD=${FOUNDRY_WORLD}
# Set to true to enable FoundryVTT telemetry, false to disable. This options allows the collection of anonymous usage data to help improve FoundryVTT.
- FOUNDRY_TELEMETRY=${FOUNDRY_TELEMETRY}