forked from open-webui/open-webui
Default docker installations should generate a random key instead of using a static secret that everyone can see.
This commit is contained in:
parent
d67f3d982b
commit
03a7e35967
2 changed files with 9 additions and 1 deletions
|
@ -53,4 +53,7 @@ COPY --from=build /app/build /app/build
|
|||
# copy backend files
|
||||
COPY ./backend .
|
||||
|
||||
# Generate a random value to use as a WEBUI_SECRET_KEY in case the user didn't provide one.
|
||||
RUN echo $(head -c 12 /dev/random | base64) > docker_secret_key
|
||||
|
||||
CMD [ "bash", "start.sh"]
|
Loading…
Add table
Add a link
Reference in a new issue