-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
117 lines (110 loc) · 2.73 KB
/
docker-compose.yml
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
version: "3.6"
services:
portainer:
image: portainer/portainer
container_name: portainer
hostname: portainer
restart: always
command: --templates http://templates/templates.json
env_file:
- .env
ports:
- 9000:9000
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ${APPS_DIR}/portainer/data:/data
environment:
- TZ=${TZ}
watchtower:
image: v2tec/watchtower
container_name: watchtower
hostname: watchtower
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock
command: --schedule "0 0 4 * * *" --cleanup
plex:
image: plexinc/pms-docker
container_name: plex
hostname: plex
restart: unless-stopped
env_file:
- .env
ports:
- 32400:32400/tcp
- 3005:3005/tcp
- 8324:8324/tcp
- 32469:32469/tcp
- 1900:1900/udp
- 32410:32410/udp
- 32412:32412/udp
- 32413:32413/udp
- 32414:32414/udp
environment:
- TZ=${TZ}
- PLEX_CLAIM=${PLEX_CLAIM}
- ADVERTISE_IP=http://${PLEX_PUBLIC_IP}:32400/
volumes:
- ${APPS_DIR}/plex/database:/config
- ${APPS_DIR}/plex/transcode/temp:/transcode
- ${MEDIA_DIR}:/data
- ${LOGS_DIR}/plex:/config/Library/Application Support/Plex Media Server/Logs
couchpotato:
image: linuxserver/couchpotato
container_name: couchpotato
hostname: couchpotato
restart: always
env_file:
- .env
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
- UMASK_SET=022
ports:
- 5050:5050
volumes:
- ${APPS_DIR}/couchpotato:/config
- ${DOWNLOAD_DIR}:/downloads
- ${MEDIA_DIR}/movies:/movies
- ${LOGS_DIR}/couchpotato:/config/data/logs
qbittorrent:
image: linuxserver/qbittorrent
container_name: qbittorrent
hostname: qbittorrent
restart: always
env_file:
- .env
volumes:
- ${APPS_DIR}/qbittorrent:/config
- ${DOWNLOAD_DIR}/completed:/downloads
- ${LOGS_DIR}/qbittorrent:/config/data/qBittorrent/logs
ports:
- 8090:8090
- 6881:6881
- 6881:6881/udp
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
- UMASK_SET=022
- WEBUI_PORT=8090
mopidy:
image: wernight/mopidy
container_name: mopidy
hostname: mopidy
env_file:
- .env
# environment:
# - PULSE_SERVER=$(PULSE_SERVER)
# - PULSE_COOKIE_DATA=${PULSE_COOKIE_DATA}
volumes:
- ${APPS_DIR}/mopidy/media:/var/lib/mopidy/media:ro
- ${APPS_DIR}/mopidy/local:/var/lib/mopidy/local
ports:
- 6600:6600
- 6680:6680
# options:
# - spotify/enabled=false
# - gmusic/enabled=false
# - soundcloud/enabled=false