Skip to content

Commit b02a689

Browse files
authored
env: fix unexpected character bug with recent docker desktop
This prevents the following parsing errors in recent Docker Desktop app: - unexpected character "!" in variable name near "to Web Chat!\\n\\n... - respectively: unexpected character "-" in variable name near "super-light-editor light-background full-width-editor... Co-authored-by: Werner Fleischer <[email protected]>
1 parent b5dbfa0 commit b02a689

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,13 @@ TZ=UTC
101101
ETHERPAD_TITLE=Video Chat
102102

103103
# The default text of a pad
104-
ETHERPAD_DEFAULT_PAD_TEXT=Welcome to Web Chat!\n\n
104+
ETHERPAD_DEFAULT_PAD_TEXT="Welcome to Web Chat!\n\n"
105105

106106
# Name of the skin for etherpad
107107
ETHERPAD_SKIN_NAME=colibris
108108

109109
# Skin variants for etherpad
110-
ETHERPAD_SKIN_VARIANTS=super-light-toolbar super-light-editor light-background full-width-editor
110+
ETHERPAD_SKIN_VARIANTS="super-light-toolbar super-light-editor light-background full-width-editor"
111111

112112

113113
#

0 commit comments

Comments
 (0)