Add advanced setting to disable docker mount check

This commit is contained in:
JonnyWong16 2021-10-09 16:42:35 -07:00
commit a49175b3b1
No known key found for this signature in database
GPG key ID: B1F1F9807184697A
4 changed files with 4 additions and 3 deletions

View file

@ -252,7 +252,7 @@ def initialize(config_file):
DB_FILE
))
if DOCKER and not DOCKER_MOUNT:
if CONFIG.CHECK_DOCKER_MOUNT and DOCKER and not DOCKER_MOUNT:
logger.warn(
"Docker /config volume not mounted. Using a Docker volume instead. "
"All data may be cleared when the container is recreated or updated."