Last active
November 14, 2022 03:23
-
-
Save pablokbs/d837d7452c3e4b4eaefeb9c8f931a723 to your computer and use it in GitHub Desktop.
docker-compose rtorrent sobre raspberry
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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