Last active
September 26, 2022 05:11
-
-
Save ismailkarsli/a3e18569cb94994447895d84a29d717c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "2.1" | |
services: | |
sonarr: | |
image: linuxserver/sonarr | |
container_name: sonarr | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=Europe/Istanbul | |
volumes: | |
- ${mountpoint}/data/sonarr/config:/config | |
- ${mountpoint}/tv:/tv | |
- ${mountpoint}/data/torrent-downloads:/downloads | |
- ${mountpoint}/data/torrent-blackhole:/blackhole | |
ports: | |
- 8989:8989 | |
restart: unless-stopped | |
radarr: | |
image: linuxserver/radarr | |
container_name: radarr | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=Europe/Istanbul | |
volumes: | |
- ${mountpoint}/data/radarr/config:/config | |
- ${mountpoint}/movies:/movies | |
- ${mountpoint}/data/torrent-downloads:/downloads | |
- ${mountpoint}/data/torrent-blackhole:/blackhole | |
ports: | |
- 7878:7878 | |
restart: unless-stopped | |
jackett: | |
image: linuxserver/jackett | |
container_name: jackett | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=Europe/Istanbul | |
- AUTO_UPDATE=true | |
volumes: | |
- ${mountpoint}/data/jackett/config:/config | |
- ${mountpoint}/data/torrent-blackhole:/blackhole | |
ports: | |
- 9117:9117 | |
restart: unless-stopped | |
bazarr: | |
image: linuxserver/bazarr | |
container_name: bazarr | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=Europe/Istanbul | |
volumes: | |
- ${mountpoint}/data/bazarr/config:/config | |
- ${mountpoint}/movies:/movies | |
- ${mountpoint}/tv:/tv | |
ports: | |
- 6767:6767 | |
restart: unless-stopped | |
jellyfin: | |
image: linuxserver/jellyfin | |
container_name: jellyfin | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=Europe/Istanbul | |
volumes: | |
- ${mountpoint}/data/jellyfin/config:/config | |
- ${mountpoint}/tv:/data/tvshows | |
- ${mountpoint}/movies:/data/movies | |
ports: | |
- 8096:8096 | |
- 8920:8920 | |
- 7359:7359/udp | |
- 1900:1900/udp | |
devices: | |
- /dev/dri:/dev/dri | |
restart: unless-stopped | |
transmission: | |
image: linuxserver/transmission | |
container_name: transmission | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=Europe/Istanbul | |
- USER=transmission | |
- PASS=transmission | |
volumes: | |
- ${mountpoint}/data/transmission/config:/config | |
- ${mountpoint}/data/torrent-downloads:/downloads | |
- ${mountpoint}/data/torrent-blackhole:/watch | |
ports: | |
- 9091:9091 | |
- 51413:51413 | |
- 51413:51413/udp | |
restart: unless-stopped |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment