diff --git a/plexpy/__init__.py b/plexpy/__init__.py
index 4551fdfd..fcb7dd9c 100644
--- a/plexpy/__init__.py
+++ b/plexpy/__init__.py
@@ -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."
diff --git a/plexpy/config.py b/plexpy/config.py
index b3fb747b..a4f98106 100644
--- a/plexpy/config.py
+++ b/plexpy/config.py
@@ -87,6 +87,7 @@ _CONFIG_DEFINITIONS = {
'CACHE_DIR': (str, 'General', ''),
'CACHE_IMAGES': (int, 'General', 1),
'CACHE_SIZEMB': (int, 'Advanced', 32),
+ 'CHECK_DOCKER_MOUNT': (int, 'Advanced', 1),
'CHECK_GITHUB': (int, 'General', 1),
'CHECK_GITHUB_INTERVAL': (int, 'General', 360),
'CHECK_GITHUB_ON_STARTUP': (int, 'General', 1),