mirror of https://github.com/SystemRage/py-kms.git
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:
parent
ceb5d0d076
commit
d1ff17bf2f
|
@ -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 \
|
||||
|
|
Loading…
Reference in New Issue