Fix directory creation issue with docker run

This commit is contained in:
Zedifus 2021-08-30 03:48:36 +01:00
parent 9959c56e6a
commit 690669e1da

View File

@ -2,6 +2,7 @@
# Check if config exists from existing installation (venv or previous docker launch)
if [ ! "$(ls -A ./app/config)" ]; then
mkdir ./app/config/
cp -r ./app/config_original/* ./app/config/
fi