docker:media_server:docker-compose
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
docker:media_server:docker-compose [2020/04/19 13:37] – created peter | docker:media_server:docker-compose [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Docker - Media Server - Docker-Compose ====== | ====== Docker - Media Server - Docker-Compose ====== | ||
+ | |||
+ | **Docker-Compose** will be used to control the entire Media Server. | ||
+ | |||
+ | <file bash docker/ | ||
+ | version: ' | ||
+ | services: | ||
+ | sonarr: | ||
+ | image: linuxserver/ | ||
+ | container_name: | ||
+ | environment: | ||
+ | - PUID=1000 | ||
+ | - PGID=1000 | ||
+ | - 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 / | ||
+ | # - / | ||
+ | # - / | ||
+ | - ./ | ||
+ | - / | ||
+ | - ./:/ | ||
+ | #- ./ | ||
+ | #- ./ | ||
+ | #- ./ | ||
+ | networks: | ||
+ | default: | ||
+ | ipv4_address: | ||
+ | ports: | ||
+ | - 8989:8989 | ||
+ | restart: unless-stopped | ||
+ | |||
+ | |||
+ | 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 | ||
+ | # - 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/media_server/docker-compose.1587303444.txt.gz · Last modified: 2020/07/15 09:30 (external edit)