mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-08 19:10:28 +00:00
24 lines
702 B
YAML
24 lines
702 B
YAML
# [Tautulli](http://tautulli.com) is a python based web application for
|
|
# monitoring, analytics and notifications for Plex Media Server.
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
tautulli:
|
|
image: ghcr.io/linuxserver/tautulli
|
|
container_name: tautulli
|
|
environment:
|
|
# for UserID
|
|
- PUID=${PUID:-1024}
|
|
# for GroupID
|
|
- PGID=${PGID:-100}
|
|
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
volumes:
|
|
# Contains tautulli config and database.
|
|
- ${BASEDIR:-/volume1/docker}/tautulli/config:/config
|
|
ports:
|
|
# WebUI
|
|
- 8181:8181
|
|
restart: unless-stopped
|