Add comments to env

This commit is contained in:
Aleksandr Vasilenko
2024-10-22 11:07:26 -05:00
parent cf82f0a807
commit 5ad0cddcff

View File

@@ -12,20 +12,35 @@ services:
expose:
- 30000
environment:
# 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}
# 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.
- FOUNDRY_HOSTNAME=${FOUNDRY_HOSTNAME}
# A string path which is appended to the base hostname to serve Foundry VTT content from a specific namespace. For example setting this to demo will result in data being served from http://x.x.x.x/demo/.
- FOUNDRY_ROUTE_PREFIX=${FOUNDRY_ROUTE_PREFIX}
# Inform the Foundry server that the software is running behind a reverse proxy on some other port. This allows the invitation links created to the game to include the correct external port.
- 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}
# 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.
- 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}
# Container TZ database name
- TIMEZONE=${TIMEZONE:-UTC}
# Set a path to cache downloads of the Foundry distribution archive and speed up subsequent container startups.
- CONTAINER_CACHE=/data/container_cache
volumes:
- foundryvtt_data:/data