mirror of
https://github.com/hassio-addons/addon-tautulli.git
synced 2025-05-04 19:11:24 +00:00
👕 Collection of cosmetic improvements (#7)
This commit is contained in:
parent
19ca870712
commit
c12bb9c8a1
5 changed files with 15 additions and 11 deletions
|
@ -93,11 +93,10 @@ you are troubleshooting.
|
||||||
|
|
||||||
### Option: `username`
|
### Option: `username`
|
||||||
|
|
||||||
Username for authenticating with the Tautulli interface. Leaving the username
|
Username for authenticating with the Tautulli interface.
|
||||||
field empty, will disable the authentication mechanism entirely.
|
|
||||||
|
|
||||||
Setting a username/password can be added as an extra line of defense,
|
Setting a username/password can be added as an extra line of defense,
|
||||||
to prevent users of using your installation for themselves.
|
to prevent users from using your installation for themselves.
|
||||||
|
|
||||||
This option is HIGHLY recommended in case you expose this add-on to the outside
|
This option is HIGHLY recommended in case you expose this add-on to the outside
|
||||||
world.
|
world.
|
||||||
|
@ -142,7 +141,7 @@ using this option! USE AT YOUR OWN RISK!_
|
||||||
### Option: `leave_front_door_open`
|
### Option: `leave_front_door_open`
|
||||||
|
|
||||||
Adding this option to the add-on configuration allows you to disable
|
Adding this option to the add-on configuration allows you to disable
|
||||||
authentication on the Web Terminal by setting it to `true` and leaving the
|
authentication on the add-on by setting it to `true` and leaving the
|
||||||
username and password empty.
|
username and password empty.
|
||||||
|
|
||||||
**Note**: _We STRONGLY suggest, not to use this, even if this add-on is
|
**Note**: _We STRONGLY suggest, not to use this, even if this add-on is
|
||||||
|
|
|
@ -12,11 +12,12 @@ Monitoring and tracking tool for Plex Media Server.
|
||||||
|
|
||||||
Tautulli is an application that you can run alongside your Plex Media Server
|
Tautulli is an application that you can run alongside your Plex Media Server
|
||||||
to monitor activity, and track various statistics.
|
to monitor activity, and track various statistics.
|
||||||
|
|
||||||
Most importantly, these statistics include what has been watched,
|
Most importantly, these statistics include what has been watched,
|
||||||
who watched it, when and where they watched it, and how it was watched.
|
who watched it, when and where they watched it, and how it was watched.
|
||||||
All statistics are presented in a nice and clean interface
|
|
||||||
with many tables and graphs,
|
All statistics are presented in a nice and clean interface with many tables and
|
||||||
which makes it easy to brag about your server to everyone else.
|
graphs, which makes it easy to brag about your server to everyone else.
|
||||||
|
|
||||||
[Click here for the full documentation][docs]
|
[Click here for the full documentation][docs]
|
||||||
|
|
||||||
|
|
|
@ -20,11 +20,13 @@ RUN \
|
||||||
python2-dev=2.7.15-r1 \
|
python2-dev=2.7.15-r1 \
|
||||||
libffi-dev=3.2.1-r4 \
|
libffi-dev=3.2.1-r4 \
|
||||||
libressl-dev=2.7.4-r0 \
|
libressl-dev=2.7.4-r0 \
|
||||||
|
\
|
||||||
&& apk add --no-cache \
|
&& apk add --no-cache \
|
||||||
git=2.18.0-r0 \
|
git=2.18.0-r0 \
|
||||||
python2=2.7.15-r1 \
|
python2=2.7.15-r1 \
|
||||||
py2-pip=10.0.1-r0 \
|
py2-pip=10.0.1-r0 \
|
||||||
wget=1.19.5-r0 \
|
wget=1.19.5-r0 \
|
||||||
|
\
|
||||||
&& pip install --no-cache-dir -U \
|
&& pip install --no-cache-dir -U \
|
||||||
pip==18.0 \
|
pip==18.0 \
|
||||||
&& pip install --no-cache-dir -U \
|
&& pip install --no-cache-dir -U \
|
||||||
|
@ -32,9 +34,11 @@ RUN \
|
||||||
pycryptodomex==3.6.6 \
|
pycryptodomex==3.6.6 \
|
||||||
crudini==0.9 \
|
crudini==0.9 \
|
||||||
PyOpenSSL==18.0.0 \
|
PyOpenSSL==18.0.0 \
|
||||||
|
\
|
||||||
&& git clone --branch $TAUTULLI_VERSION --depth=1 \
|
&& git clone --branch $TAUTULLI_VERSION --depth=1 \
|
||||||
https://github.com/Tautulli/Tautulli.git /opt \
|
https://github.com/Tautulli/Tautulli.git /opt \
|
||||||
&& apk del --purge .build-dependencies \
|
&& apk del --purge .build-dependencies \
|
||||||
|
\
|
||||||
&& find /usr/lib/python2.7/ -type d -name tests -depth -exec rm -rf {} \; \
|
&& find /usr/lib/python2.7/ -type d -name tests -depth -exec rm -rf {} \; \
|
||||||
&& find /usr/lib/python2.7/ -type d -name test -depth -exec rm -rf {} \; \
|
&& find /usr/lib/python2.7/ -type d -name test -depth -exec rm -rf {} \; \
|
||||||
&& find /usr/lib/python2.7/ -name __pycache__ -depth -exec rm -rf {} \;
|
&& find /usr/lib/python2.7/ -name __pycache__ -depth -exec rm -rf {} \;
|
||||||
|
@ -64,4 +68,4 @@ LABEL \
|
||||||
org.label-schema.usage="https://github.com/hassio-addons/addon-tautulli/tree/master/README.md" \
|
org.label-schema.usage="https://github.com/hassio-addons/addon-tautulli/tree/master/README.md" \
|
||||||
org.label-schema.vcs-ref=${BUILD_REF} \
|
org.label-schema.vcs-ref=${BUILD_REF} \
|
||||||
org.label-schema.vcs-url="https://github.com/hassio-addons/addon-tautulli" \
|
org.label-schema.vcs-url="https://github.com/hassio-addons/addon-tautulli" \
|
||||||
org.label-schema.vendor="Community Hass.io Add-ons"
|
org.label-schema.vendor="Community Hass.io Add-ons"
|
||||||
|
|
|
@ -29,10 +29,10 @@
|
||||||
+ <td>Add-on Support:</td>
|
+ <td>Add-on Support:</td>
|
||||||
+ <td>
|
+ <td>
|
||||||
+ <a class="no-highlight" href="https://discord.me/hassioaddons" target="_blank">Community Hass.io Add-ons Discord Server</a> |
|
+ <a class="no-highlight" href="https://discord.me/hassioaddons" target="_blank">Community Hass.io Add-ons Discord Server</a> |
|
||||||
+ <a class="no-highlight" href="https://github.com/hassio-addons/addon-tautulli/issues" target="_blank">GitHub issues for this add-on</a> |
|
+ <a class="no-highlight" href="https://github.com/hassio-addons/addon-tautulli/issues" target="_blank">GitHub issues for this add-on</a> |
|
||||||
+ <a class="no-highlight" href="https://community.home-assistant.io" target="_blank">Home-Assistant forum</a>
|
+ <a class="no-highlight" href="https://community.home-assistant.io" target="_blank">Home Assistant forum</a>
|
||||||
+ </td>
|
+ </td>
|
||||||
+ </tr>
|
+ </tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue