-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy path.env.template
70 lines (63 loc) · 1.83 KB
/
.env.template
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
#
# Docker stack name
#
COMPOSE_PROJECT_NAME=mediabox
#
# User & Group ID
#
PUID=1000
PGID=1000
#
# Custom domain and certificates
#
DOMAIN=example.com
SSL_ACME_EMAIL=you@mail.com
#
# VPN DNS (e.g: https://support.nordvpn.com/General-info/1047409702/What-are-your-DNS-server-addresses.htm)
#
VPN_DNS=103.86.96.100
#
# See [this reddit post](https://www.reddit.com/r/usenet/wiki/docker#wiki_the_best_docker_setup)
# for recommendations on how to organize your media depending on your setup.
#
# My disks layout:
#
# data
# ├── 2tb
# │ └── media
# │ ├── movies
# │ ├── pictures
# │ └── tv
# ├── extra
# │ └── media
# │ ├── movies
# │ └── tv
# └── ssd
# └── mediabox
# ├── containers
# ├── downloads
# └── repo
#
# containers : Storing them inside an external disk might be a good idea if you plan to run this on multiple machines using the same media library.
# downloads : directory. It will hold incomplete and completed downloads. If you're using an external HDD to store your media files,
# it might be a good idea to keep downloads (until moved by Sonarr/Radarr, and if you have enough space) in an SSD disk partition.
# This aims to avoid constant write ops on the external HDD.
#
DATA=/data
CONTAINERS=/data/ssd/mediabox/containers
DOWNLOADS=/data/ssd/mediabox/downloads
#
# Calibre credentials
# PASSWORD => md5 hash for the calibre desktop gui.
#
CALIBRE_USERNAME=yourusername
CALIBRE_PASSWORD=8543a52ww3456g6785725427b20f87d2
#
# Thanks to https://github.com/gilbN/theme.park
# See themes/deluge for more options (e.g: aquamarine, dark, plex)
#
DELUGE_THEME=darker
#
# Your local timezone
#
TIMEZONE=America/Argentina/Buenos_Aires