mirror of
https://github.com/bensuperpc/infrastructure.git
synced 2024-11-14 22:21:32 +01:00
47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
|
version: "3.9"
|
||
|
|
||
|
services:
|
||
|
qbittorrent:
|
||
|
image: lscr.io/linuxserver/qbittorrent:latest
|
||
|
container_name: qbittorrent
|
||
|
profiles:
|
||
|
- qbittorrent
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
- TZ=Europe/London
|
||
|
- WEBUI_PORT=8080
|
||
|
volumes:
|
||
|
- qbittorrent-conf:/config
|
||
|
- qbittorrent-downloads:/downloads
|
||
|
#ports:
|
||
|
# - 8080:8080
|
||
|
# - 6881:6881
|
||
|
# - 6881:6881/udp
|
||
|
restart: unless-stopped
|
||
|
networks:
|
||
|
- app-network
|
||
|
jellyfin:
|
||
|
image: lscr.io/linuxserver/jellyfin:latest
|
||
|
container_name: jellyfin
|
||
|
profiles:
|
||
|
- jellyfin
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
- TZ=Europe/London
|
||
|
- JELLYFIN_PublishedServerUrl=192.168.0.5 #optional
|
||
|
volumes:
|
||
|
- jellyfin-config:/config
|
||
|
- jellyfin-tvseries:/data/tvshows
|
||
|
- jellyfin-movies:/data/movies
|
||
|
- jellyfin:/var/www/html
|
||
|
#ports:
|
||
|
# - 8096:8096
|
||
|
# - 8920:8920 #optional
|
||
|
# - 7359:7359/udp #optional
|
||
|
# - 1900:1900/udp #optional
|
||
|
restart: unless-stopped
|
||
|
networks:
|
||
|
- app-network
|