docker:media_server
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
docker:media_server [2020/04/19 13:02] – peter | docker:media_server [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Docker - Media Server ====== | ====== Docker - Media Server ====== | ||
+ | This sets up a complete Media Server, which will pull in any Media files you may want. | ||
- | ===== Docker-Compose Config Files ===== | + | There are multiple steps needed. |
- | <file bash docker/ | + | * [[Docker:Media Server:Docker-Compose|Docker-Compose]] |
- | version: ' | + | * [[Docker:Media Server:Directory Structure|Directory Structure]] |
- | services: | + | * [[Docker:Media Server:Jackett|Jackett]] |
- | sonarr: | + | * [[Docker:Media Server:SABnzbd|SABnzbd]] |
- | image: linuxserver/ | + | * [[Docker:Media Server:Transmission|Transmission]] |
- | container_name: | + | * [[Docker:Media Server:Sonarr|Sonarr]] |
- | environment: | + | |
- | | + | |
- | | + | |
- | - TZ=Europe/ | + | |
- | # - UMASK_SET=022 #optional | + | |
- | volumes: | + | |
- | # In order to the container uses the same date which is in the host, it is necessary to share / | + | |
- | # - / | + | |
- | # - /dev/rtc:/dev/rtc:ro | + | |
- | - ./ | + | |
- | - / | + | |
- | - ./:/downloads:rw | + | |
- | #- ./ | + | |
- | #- ./ | + | |
- | #- ./ | + | |
- | networks: | + | |
- | default: | + | |
- | ipv4_address: | + | |
- | ports: | + | |
- | - 8989:8989 | + | |
- | restart: unless-stopped | + | |
- | + | * [[Docker:Media Server:Run the Media Server|Run | |
- | jackett: | + | |
- | image: linuxserver/ | + | |
- | # image: binhex/ | + | |
- | container_name: | + | |
- | environment: | + | |
- | - PUID=1000 | + | |
- | - PGID=1000 | + | |
- | - TZ=Europe/ | + | |
- | # - RUN_OPTS=run options here #optional | + | |
- | volumes: | + | |
- | - ./ | + | |
- | - ./ | + | |
- | networks: | + | |
- | default: | + | |
- | ipv4_address: | + | |
- | ports: | + | |
- | - 9117:9117 | + | |
- | # restart: unless-stopped | + | |
- | restart: always | + | |
- | + | ||
- | + | ||
- | # transmission: | + | |
- | # image: linuxserver/ | + | |
- | # container_name: | + | |
- | # environment: | + | |
- | # - PUID=1000 | + | |
- | # - PGID=1000 | + | |
- | # - TZ=Europe/ | + | |
- | ## - TRANSMISSION_WEB_HOME=/ | + | |
- | # volumes: | + | |
- | # - ./ | + | |
- | # - ./ | + | |
- | # - ./ | + | |
- | # networks: | + | |
- | # default: | + | |
- | # ipv4_address: | + | |
- | # ports: | + | |
- | # - 9091:9091 | + | |
- | # - 51413: | + | |
- | # - 51413: | + | |
- | # restart: unless-stopped | + | |
- | + | ||
- | transmission: | + | |
- | image: dperson/ | + | |
- | container_name: | + | |
- | environment: | + | |
- | # - PUID=1000 | + | |
- | # - PGID=1000 | + | |
- | - TZ=Europe/ | + | |
- | - USERID=1000 | + | |
- | - GROUPID=1000 | + | |
- | volumes: | + | |
- | # In order to the container uses the same date which is in the host, it is necessary to share / | + | |
- | - / | + | |
- | - ./ | + | |
- | #- ./ | + | |
- | networks: | + | |
- | default: | + | |
- | ipv4_address: | + | |
- | ports: | + | |
- | - 9091:9091 | + | |
- | restart: unless-stopped | + | |
- | + | ||
- | + | ||
- | nzbget: | + | |
- | #image: linuxserver/ | + | |
- | image: linuxserver/ | + | |
- | container_name: | + | |
- | environment: | + | |
- | - PUID=1000 | + | |
- | - PGID=1000 | + | |
- | - TZ=Europe/ | + | |
- | volumes: | + | |
- | - ./ | + | |
- | - ./ | + | |
- | # - ./ | + | |
- | #- ./ | + | |
- | # - ./ | + | |
- | networks: | + | |
- | default: | + | |
- | ipv4_address: | + | |
- | ports: | + | |
- | - 6789:6789 | + | |
- | restart: unless-stopped | + | |
- | + | ||
- | + | ||
- | sabnzbd: | + | |
- | image: linuxserver/ | + | |
- | container_name: | + | |
- | environment: | + | |
- | - PUID=1000 | + | |
- | - PGID=1000 | + | |
- | - TZ=Europe/ | + | |
- | volumes: | + | |
- | - ./ | + | |
- | # - ./ | + | |
- | - ./ | + | |
- | # - ./ | + | |
- | # - ./ | + | |
- | # - ./ | + | |
- | - ./ | + | |
- | networks: | + | |
- | default: | + | |
- | ipv4_address: | + | |
- | ports: | + | |
- | - 8080:8080 | + | |
- | - 9090:9090 | + | |
- | restart: unless-stopped | + | |
- | + | ||
- | + | ||
- | networks: | + | |
- | default: | + | |
- | driver: bridge | + | |
- | ipam: | + | |
- | config: | + | |
- | - subnet: 172.19.0.0/ | + | |
- | </ | + | |
---- | ---- | ||
- | + | * [[Docker: | |
- | ===== Directory Structure ===== | + | |
- | + | ||
- | <code bash> | + | |
- | / | + | |
- | + | ||
- | / | + | |
- | / | + | |
- | / | + | |
- | / | + | |
- | / | + | |
- | / | + | |
- | + | ||
- | / | + | |
- | / | + | |
- | / | + | |
- | / | + | |
- | / | + | |
- | / | + | |
- | / | + | |
- | / | + | |
- | + | ||
- | / | + | |
- | / | + | |
- | / | + | |
- | / | + | |
- | / | + | |
- | / | + | |
- | / | + | |
- | + | ||
- | / | + | |
- | / | + | |
- | / | + | |
- | / | + | |
- | / | + | |
- | / | + | |
- | / | + | |
- | + | ||
- | / | + | |
- | / | + | |
- | / | + | |
- | / | + | |
- | / | + | |
- | / | + | |
- | / | + | |
- | </ | + | |
---- | ---- | ||
- | ===== Configure Jackett | + | ===== References |
- | + | ||
- | Enter **http:// | + | |
- | + | ||
- | {{: | + | |
- | + | ||
- | + | ||
- | Click on the **Add Indexer** button at the top. | + | |
- | + | ||
- | {{: | + | |
- | + | ||
- | This will display a list of Indexers that are available. | + | |
- | + | ||
- | {{: | + | |
- | + | ||
- | ---- | + | |
- | ===== Configure Sonarrr ===== | + | https:// |
- | Enter **http:// | ||
docker/media_server.1587301333.txt.gz · Last modified: 2020/07/15 09:30 (external edit)