Guest User

docker-compose.yml

a guest
May 2nd, 2021
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.57 KB | None | 0 0
  1. ---
  2. version: "2.1"
  3. services:
  4.     jackett:
  5.         image: ghcr.io/linuxserver/jackett
  6.         container_name: jackett
  7.         environment:
  8.            - PUID=1000
  9.             - PGID=1000
  10.             - TZ=America/Argentina/Buenos_Aires
  11.             # - AUTO_UPDATE=true #optional
  12.             # - RUN_OPTS=<run options here> #optional
  13.         volumes:
  14.            - /opt/torrent/jackett:/config
  15.             - /mnt/Shared/watch:/downloads
  16.         ports:
  17.            - 192.168.10.2:9117:9117
  18.         restart: unless-stopped
  19.     transmission:
  20.         image: ghcr.io/linuxserver/transmission
  21.         # stdin_open: true
  22.         # tty: true
  23.         container_name: transmission
  24.         environment:
  25.            - PUID=1000
  26.             - PGID=1000
  27.             - TZ=America/Argentina/Buenos_Aires
  28.             # - TRANSMISSION_WEB_HOME=/combustion-release/ #optional
  29.             # - USER=username #optional
  30.             # - PASS=password #optional
  31.             - WHITELIST=127.0.0.1,192.168.10.* #optional
  32.             #- HOST_WHITELIST=dnsnane list #optional
  33.         volumes:
  34.            - /opt/torrent/transmission:/config
  35.             - /mnt/Shared/downloads:/downloads
  36.             - /mnt/Shared/watch:/watch
  37.         ports:
  38.            - 192.168.10.2:9091:9091
  39.             - 192.168.10.2:51413:51413
  40.             - 192.168.10.2:51413:51413/udp
  41.         restart: unless-stopped
  42.     sonarr:
  43.         image: ghcr.io/linuxserver/sonarr
  44.         container_name: sonarr
  45.         environment:
  46.            - PUID=1000
  47.             - PGID=1000
  48.             - TZ=America/Argentina/Buenos_Aires
  49.         volumes:
  50.            - /opt/torrent/sonarr:/config
  51.             - /mnt/Shared:/media
  52.         ports:
  53.            - 192.168.10.2:8989:8989
  54.         restart: unless-stopped
  55.     radarr:
  56.         image: ghcr.io/linuxserver/radarr
  57.         container_name: radarr
  58.         environment:
  59.            - PUID=1000
  60.             - PGID=1000
  61.             - TZ=America/Argentina/Buenos_Aires
  62.         volumes:
  63.            - /opt/torrent/radarr:/config
  64.             - /mnt/Shared:/media
  65.         ports:
  66.            - 192.168.10.2:7878:7878
  67.         restart: unless-stopped
  68. #    plex:
  69. #        image: ghcr.io/linuxserver/plex
  70. #        container_name: plex
  71. #        device
  72. #            - /dev/dri:/dev/dri
  73. #        environment:
  74. #            - PUID=1000
  75. #            - PGID=1000
  76. #            - TZ=America/Argentina/Buenos_Aires
  77. #        volumes:
  78. #            - /opt/torrent/config:/config
  79. #            - /mnt/Shared:/media
  80. #        ports:
  81. #            - 192.168.10.2:7878:7878
  82. #        restart: unless-stopped
  83.  
Add Comment
Please, Sign In to add comment