mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2025-06-05 21:59:24 +02:00
Docker Fix
This commit is contained in:
@@ -9,10 +9,11 @@ if [[ ! -d "/content" ]];then
|
||||
mkdir /content
|
||||
fi
|
||||
|
||||
for FILE in /content/*;do
|
||||
rm -rf /opt/koboldai/$FILE
|
||||
ln -s /content/$FILE /opt/koboldai/
|
||||
#mount --bind /content/$FILE /opt/koboldai/$FILE
|
||||
for FILE in /content/*
|
||||
do
|
||||
FILENAME="$(basename $FILE)"
|
||||
rm -rf /opt/koboldai/$FILENAME
|
||||
ln -s $FILE /opt/koboldai/
|
||||
done
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user