CloudTorrent+Resilio+Plex 搭建

故事扮演 提交于 2019-12-06 12:53:37
version: '3.4'
services:
  CloudTorrent:
    image: jpillora/cloud-torrent
    container_name: CloudTorrent
    ports:
      - "7777:3000"
    volumes:
      - D:/同步:/downloads

  Resilio:
    image: resilio/sync
    container_name: Resilio
    ports:
      - "8888:8888"
    volumes:
      - D:/同步:/mnt/sync

  Plex:
    image: plexinc/pms-docker
    container_name: Plex
    ports:
        - 32400:32400/tcp
        - 3005:3005/tcp
        - 8324:8324/tcp
        - 32469:32469/tcp
        - 1900:1900/udp
        - 32410:32410/udp
        - 32412:32412/udp
        - 32413:32413/udp
        - 32414:32414/udp
    environment:
       TZ: "Asia/Shanghai"
       PLEX_CLAIM: "claim从后面得网址获取" #https://www.plex.tv/claim/
       ADVERTISE_IP: "http://0.0.0.0:32400/"
    volumes:
      - D:/同步:/data
      - D:/docker-data/family/config:/config
      - D:/docker-data/family/transcode:/transcode

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!