gists/rutorrent

By gists

Updated 3 months ago

rTorrent with ruTorrent based on Alpine

Image
9

5M+

gists/rutorrent repository overview

Dockerfile https://github.com/vgist/dockerfiles/tree/master/rutorrent

Volume
  • /data
Environment:
EnvironmentDefault value
USERNAMEadmin
PASSWORD$(hostname)
UID1000
GID1000
Custom usage:
docker run \
    -d \
    --name rutorrent \
    -p 80:8080 \
    -p 55000:55000 \
    -v /your/data:/data \
    -e USERNAME=yourname \
    -e PASSWORD=yourpassword \
    gists/rutorrent
Compose example:
rutorrent:
  image: gists/rtorrent
  ports:
    - "80:8080"
    - "55000:55000/tcp"
  volumes:
    - /your/data:/data
  environment:
    - USERNAME=yourname
    - PASSWORD=yourpassword
  restart: always
Trouble

container fails to start and say:

rtorrent: std::bad_alloc

you can run docker with --ulimit

docker run --ulimit nofile=your-value:your-value ......

or your docker-compose

ulimits:
  nofile:
    hard: your-value
    soft: your-value

Tag summary

Content type

Image

Digest

sha256:1693c1e5d

Size

230.7 MB

Last updated

3 months ago

docker pull gists/rutorrent