Change default SQLITE flag to False

Documentation and code suggests SQL is set to False by default however this flag in this file is set to true, causing OOTB errors for new docker installations.
This commit is contained in:
wulfftech 2021-01-11 20:23:29 +08:00 committed by GitHub
parent ceb5d0d076
commit d1ff17bf2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ docker run -d --name py3-kms \
-p 1688:1688 \
-e IP=0.0.0.0 \
-e PORT=1688 \
-e SQLITE=true \
-e SQLITE=false \
-e HWID=RANDOM \
-e LOGLEVEL=INFO \
-e LOGFILE=/var/log/pykms_logserver.log \