Skip to content

Instantly share code, notes, and snippets.

@RoyTakanen
Created May 7, 2021 16:42
Show Gist options
  • Save RoyTakanen/fc866cdd47ed68999c85e3d0b80a055c to your computer and use it in GitHub Desktop.
Save RoyTakanen/fc866cdd47ed68999c85e3d0b80a055c to your computer and use it in GitHub Desktop.
Cloud-torrent docker-compose.yml with ssh mounted drive (password authentication)
#https://pastebin.fi/p/Z8DF3IdYPHXX/
version: "3"
services:
cloud-torrent:
image: jpillora/cloud-torrent
ports:
- "3000:3000"
volumes:
- "sshfsdata:/downloads"
volumes:
sshfsdata:
driver: vieux/sshfs:latest
driver_opts:
sshcmd: "<username>@<hostname>:/<folder>"
password: "<password>"
allow_other: ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment