You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I imported my existing config when I migrated from a standalone server installation to docker.
Yesterday's update broke my installation. At first I thought it was due to the UID, so I had to change my system for it to match the values of 1000/1000, but that didn't fix anything.
When reading the new commit for the entrypoint.sh, 6a9d8f5
The variable CONFIG_FILE is set as readonly.
Therefore, the code at lines 58ish can't work :
if [[ -f "$MUMBLE_CUSTOM_CONFIG_FILE" ]]; then
echo "Using manually specified config file at $MUMBLE_CUSTOM_CONFIG_FILE"
echo "All MUMBLE_CONFIG variables will be ignored"
CONFIG_FILE="$MUMBLE_CUSTOM_CONFIG_FILE"
else
Because the variable is readonly...
Can you revert that commit or correct the problem please ?
The text was updated successfully, but these errors were encountered:
Hi,
I imported my existing config when I migrated from a standalone server installation to docker.
Yesterday's update broke my installation. At first I thought it was due to the UID, so I had to change my system for it to match the values of 1000/1000, but that didn't fix anything.
When reading the new commit for the entrypoint.sh, 6a9d8f5
The variable CONFIG_FILE is set as readonly.
Therefore, the code at lines 58ish can't work :
Because the variable is readonly...
Can you revert that commit or correct the problem please ?
The text was updated successfully, but these errors were encountered: