-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.env
126 lines (88 loc) · 3.74 KB
/
.env
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
################################
# Global Configuration #
################################
# Below is the user and group UID that Rtorrent, Sonarr, Radarr etc. should run as.
PUID=1000
PGID=1000
TIME_ZONE=Europe/Copenhagen
# This is the username and password for basic authentication
# for Sonarr, Radarr, Rtorrent, Jackett, Tautulli and Traefik dashboard.
# You can create your user:password string with the following docker command.
#
# docker run -it --rm httpd bash -c "htpasswd -nB user"
BASIC_AUTH=user:$2y$05$GsNMAR3c5Nxr32v//38L1eWUpkrK9EGPpUZJLjsPDT18uPA44E0mq
################################
# Sonarr Configuration #
################################
# Domain name
SONARR_DOMAIN_NAME=sonarr.example.org
# Config folder to keep persistent config, files etc. (Mount point: /config)
SONARR_CONFIG_PATH=/home/docker-data/sonarr/config
# Finished TV Shows folder, for Sonarr to copy to. (Mount point: /tv)
TV_SHOWS_PATH=/mnt/media/TV-Shows
################################
# Radarr Configuration #
################################
# Domain name
RADARR_DOMAIN_NAME=radarr.example.org
# Config folder to keep persistent config, files etc. (Mount point: /config)
RADARR_CONFIG_PATH=/home/docker-data/radarr/config
# Finished TV Shows folder, for Sonarr to copy to. (Mount point: /tv)
MOVIES_PATH=/mnt/media/Movies
################################
# Jackett Configuration #
################################
# Domain name
JACKETT_DOMAIN_NAME=jackett.example.org
# Config folder to keep persistent config, files etc. (Mount point: /config)
JACKETT_CONFIG_PATH=/home/docker-data/jackett/config
################################
# Rtorrent Configuration #
################################
# Domain name
RTORRENT_DOMAIN_NAME=rtorrent.example.org
# The download folder. (Mount point: /downloads)
TORRENT_DL_FOLDER=/home/docker-data/rtorrent/downloads
# The rtorrent image puts its files in <download-dir>/incoming
# and Sonarr + Radarr needs a path to the incoming folder.
DL_COMPLETE_FOLDER=/home/docker-data/rtorrent/downloads/incoming
# Config directory
RTORRENT_CONFIG_PATH=/home/docker-data/rtorrent/config
################################
# Plex Configuration #
################################
# Domain name
PLEX_DOMAIN_NAME=plex.example.org
# Config directory
PLEX_CONFIG_PATH=/home/docker-data/plex/config
# Media directory
PLEX_MEDIA_PATH=/mnt/media
# Trancode Directory
PLEX_TRANSCODE_PATH=/home/docker-data/plex/trancode
# Claim token for Plex Server. Can be found at https://www.plex.tv/claim/
# Remember claim codes are only valid for 4 min and you need it the first time you start Plex.
PLEX_CLAIM_TOKEN=claim-code-goes-here
# Plex Application log path
PLEX_LOGS_PATH=/home/docker-data/plex/logs
################################
# Tautulli Configuration #
################################
# Domain name
TAUTULLI_DOMAIN_NAME=plexmon.example.org
# Config directory
TAUTULLI_CONFIG_PATH=/home/docker-data/tautulli/config
################################
# Traefik Configuration #
################################
# Traefik log level. Levels: debug, panic, fatal, error, warn and info.
LOG_LEVEL=info
# Mail adresse that will be registeret to the Lets Encrypt certificates.
# Enable automatic Lets Encrypt certificates. true/false
ENABLE_LETS_ENCRYPT=true
# Path to acme.json, including the file. This is where the certificates are stored.
TRAEFIK_ACME_FILE=/home/docker-data/traefik/acme.json
# Bacuse of Lets Encrypt's rate limits on generating certifiactes you should use
# their staging environment until you are certain that your certificate request works,
# then uncomment below line to request the not-fake certificates.
STAGING_ENVIRONMENT=https://acme-staging-v02.api.letsencrypt.org/directory