mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-14 02:26:58 -07:00
Add docker mount warning log message on startup
This commit is contained in:
parent
8f3a108f3b
commit
9d4d740e8a
1 changed files with 7 additions and 0 deletions
|
@ -241,6 +241,13 @@ def initialize(config_file):
|
|||
logger.info("Python {}".format(
|
||||
sys.version.replace('\n', '')
|
||||
))
|
||||
|
||||
if DOCKER and not DOCKER_MOUNT:
|
||||
logger.warn(
|
||||
"Docker /config volume not mounted. "
|
||||
"All data may be cleared when the container is recreated or updated."
|
||||
)
|
||||
|
||||
logger.info("Program Dir: {}".format(
|
||||
PROG_DIR
|
||||
))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue