Skip to content

Instantly share code, notes, and snippets.

@pablokbs
Last active November 14, 2022 03:23
Show Gist options
  • Save pablokbs/d837d7452c3e4b4eaefeb9c8f931a723 to your computer and use it in GitHub Desktop.
Save pablokbs/d837d7452c3e4b4eaefeb9c8f931a723 to your computer and use it in GitHub Desktop.
docker-compose rtorrent sobre raspberry
## docker-compose para correr rtorrent sobre raspberry
## by PeladoNerd https://youtu.be/pZArt1yEw_o
version: "2"
services:
samba:
image: dperson/samba:rpi
restart: always
command: '-u "pi;password" -s "media;/media;yes;no" -s "downloads;/downloads;yes;no"'
stdin_open: true
tty: true
ports:
- 139:130
- 445:445
volumes:
- /usr/share/zoneinfo/America/Argentina/Mendoza:/etc/localtime
- /home/pi/media:/media
- /home/pi/downloads:/downloads
rtorrent:
image: pablokbs/rutorrent-armhf
ports:
- 80:80
- 51413:51413
- 6881:6881/udp
volumes:
- /home/pi/torrents-config/rtorrent:/config/rtorrent
- /home/pi/downloads:/downloads
restart: always
@pablokbs
Copy link
Author

pablokbs commented Dec 9, 2019

si, deberia ser 139:139, tengo un typo ahi.

Te fijaste si hay otro proceso usando el 139? tal vez tenes un samba corriendo afuera de docker

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment