envVars field of a container’s .container config file. The EnvVars class parses them as a space-separated list of KEY=VALUE pairs:
Variables are applied at container startup. Restart the container after making changes for them to take effect.
Default environment variables
Every new container is initialized with the following defaults (fromContainer.DEFAULT_ENV_VARS):
Additional useful variables
MESA_EXTENSION_MAX_YEAR
MESA_EXTENSION_MAX_YEAR
2003 is recommended for games from the early 2000s.WINEDEBUG
WINEDEBUG
warn, err, and fixme. You can narrow or broaden the output:Enable Wine debug logging in Settings → Enable Wine Debug, then choose channels from the list.
DXVK_ASYNC
DXVK_ASYNC
DXVK_HUD
DXVK_HUD
Format reference
TheEnvVars class (see EnvVars.java) parses the variable string as follows:
- Entries are space-separated:
KEY1=VALUE1 KEY2=VALUE2 - No quotes are needed for simple values
- Values with spaces must escape the space with a backslash (
\) in the stored string (handled automatically by the UI) - Duplicate keys are overwritten; the last definition wins
- The full list can be retrieved as a
String[]viatoStringArray()or as a single escaped string viatoEscapedString()
