From 677916a3ec9964b119b6478f1a45e484bc603433 Mon Sep 17 00:00:00 2001 From: lepoarro <68047844+lepoarro@users.noreply.github.com> Date: Fri, 22 Oct 2021 14:59:53 +0300 Subject: [PATCH] Update entrypoint.py --- docker/entrypoint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/entrypoint.py b/docker/entrypoint.py index 5d2f982..bd0805e 100755 --- a/docker/entrypoint.py +++ b/docker/entrypoint.py @@ -30,8 +30,8 @@ for (arg, env) in argumentVariableMapping.items(): enableSQLITE = os.path.isfile(sqliteWebPath) and os.environ.get('SQLITE', 'false').lower() == 'true' if enableSQLITE: - print('Storing database file to ' + dbPath) dbPath = os.path.join('db', 'pykms_database.db') + print('Storing database file to ' + dbPath) os.makedirs('db', exist_ok=True) command.append('-s') command.append(dbPath)