qbittorent + jellyfin
This commit is contained in:
parent
af3e8a8104
commit
726edf435b
3 changed files with 43 additions and 2 deletions
18
Containers/Jellyfin/compose.yml
Normal file
18
Containers/Jellyfin/compose.yml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
services:
|
||||
jellyfin:
|
||||
restart: 'unless-stopped'
|
||||
image: jellyfin/jellyfin
|
||||
container_name: jellyfin
|
||||
# user: 1000:1000
|
||||
network_mode: 'host'
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- ./cache:/cache
|
||||
- type: bind
|
||||
source: /mnt/moviesHDD/JellyfinMedias
|
||||
target: /media
|
||||
devices:
|
||||
- /dev/dri:/dev/dri
|
||||
labels:
|
||||
tsdproxy.enable: "true"
|
||||
tsdproxy.name: "stream"
|
||||
|
|
@ -12,12 +12,13 @@ services:
|
|||
volumes:
|
||||
- ./nextcloud_data:/var/www/html
|
||||
- /home/criz/Medias:/mnt/medias
|
||||
- /mnt/moviesHDD:/mnt/movieshdd
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- REDIS_HOST=redis
|
||||
- PHP_MEMORY_LIMIT=4GB
|
||||
- PHP_UPLOAD_LIMIT=64GB
|
||||
- PHP_MEMORY_LIMIT=4G
|
||||
- PHP_UPLOAD_LIMIT=64G
|
||||
- APACHE_BODY_LIMIT=0
|
||||
labels:
|
||||
tsdproxy.enable: "true"
|
||||
|
|
|
|||
22
Containers/Qbittorrent/compose.yml
Normal file
22
Containers/Qbittorrent/compose.yml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
---
|
||||
services:
|
||||
qbittorrent:
|
||||
image: lscr.io/linuxserver/qbittorrent:latest
|
||||
container_name: qbittorrent
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Etc/UTC
|
||||
- WEBUI_PORT=13461
|
||||
- TORRENTING_PORT=6881
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- /home/criz/Medias/Torrents:/downloads #optional
|
||||
ports:
|
||||
- 13461:13461
|
||||
- 6881:6881
|
||||
- 6881:6881/udp
|
||||
restart: unless-stopped
|
||||
labels:
|
||||
tsdproxy.enable: "true"
|
||||
tsdproxy.name: "torrent"
|
||||
Loading…
Add table
Add a link
Reference in a new issue