Dockerfile https://github.com/vgist/dockerfiles/tree/master/rutorrent
| Environment | Default value |
|---|---|
| USERNAME | admin |
| PASSWORD | $(hostname) |
| UID | 1000 |
| GID | 1000 |
docker run \
-d \
--name rutorrent \
-p 80:8080 \
-p 55000:55000 \
-v /your/data:/data \
-e USERNAME=yourname \
-e PASSWORD=yourpassword \
gists/rutorrent
rutorrent:
image: gists/rtorrent
ports:
- "80:8080"
- "55000:55000/tcp"
volumes:
- /your/data:/data
environment:
- USERNAME=yourname
- PASSWORD=yourpassword
restart: always
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
Content type
Image
Digest
sha256:1693c1e5d…
Size
230.7 MB
Last updated
3 months ago
docker pull gists/rutorrent