mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-16 02:02:58 -07:00
Add advanced setting to disable docker mount check
This commit is contained in:
parent
f4073c30ac
commit
a49175b3b1
4 changed files with 4 additions and 3 deletions
|
@ -21,7 +21,7 @@
|
|||
|
||||
<%def name="body()">
|
||||
<div class="container">
|
||||
% if plexpy.DOCKER and not plexpy.DOCKER_MOUNT:
|
||||
% if plexpy.CONFIG.CHECK_DOCKER_MOUNT and plexpy.DOCKER and not plexpy.DOCKER_MOUNT:
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="alert alert-danger docker-mount" role="alert">
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
|
||||
<body>
|
||||
<div class="container-fluid">
|
||||
% if plexpy.DOCKER and not plexpy.DOCKER_MOUNT:
|
||||
% if plexpy.CONFIG.CHECK_DOCKER_MOUNT and plexpy.DOCKER and not plexpy.DOCKER_MOUNT:
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="alert alert-danger docker-mount" role="alert" style="width: 700px;">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue