====== Simple Torrent ====== Cliente torrent vía web originalmente basado en [[https://github.com/jpillora/cloud-torrent|Cloud Torrent]]. * [[https://github.com/boypt/simple-torrent|Repositorio oficial]] {{ :informatica:software:simple-torrent.png?nolink |}} ===== Instalación ===== ==== Docker ==== Ejemplo de fichero ''docker-compose.yml'': version: "3" services: simple-torrent: image: boypt/cloud-torrent container_name: simple-torrent environment: AUTH: "usuario:contraseña" TITLE: "MySimpleTorrent" volumes: - ./downloads:/srv/downloads - ./cloud-torrent.yaml:/etc/cloud-torrent.yaml ports: - "3000:3000" - "50012:50012" - "50012:50012/udp" command: ["-c", "/etc/cloud-torrent.yaml"] restart: unless-stopped * https://github.com/boypt/simple-torrent/wiki/DockerCompose