-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
42 lines (36 loc) · 1.03 KB
/
compose.yaml
File metadata and controls
42 lines (36 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: tautulli
x-daemonless:
title: "Tautulli"
icon: ":simple-plex:"
category: "Media Servers"
description: "Monitoring and tracking tool for Plex Media Server — tracks what is being watched, who is watching, and when."
upstream_url: "https://github.com/Tautulli/Tautulli"
web_url: "https://tautulli.com/"
freshports_url: "https://www.freshports.org/multimedia/tautulli/"
user: "bsd"
mlock: false
appjail: true
docs:
env:
PUID: "User ID for the application process"
PGID: "Group ID for the application process"
TZ: "Timezone for the container"
TAUTULLI_DOCKER: "Disable internal updater (True/False)"
volumes:
/config: "Configuration directory"
ports:
8181: "Web UI"
services:
tautulli:
image: ghcr.io/daemonless/tautulli:latest
container_name: tautulli
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
- TAUTULLI_DOCKER=True
volumes:
- /path/to/containers/tautulli:/config
ports:
- 8181:8181