rtorrent
rtorrent copied to clipboard
Docker image not running
I'm trying to run rtorrent inside docker with this image. But all I get is an error
rtorrent: std::bad_alloc
rtorrent: std::bad_alloc
rtorrent: std::bad_alloc
rtorrent: std::bad_alloc
rtorrent: std::bad_alloc
This is my compose.yaml file:
services:
rtorrent:
hostname: rtorrent
image: jesec/rtorrent:0.9.8-r16
container_name: rtorrent
user: 1000:1000
restart: unless-stopped
command: -o network.port_range.set=6881:6881, system.daemon.set=true
environment:
HOME: /config
volumes:
- ./dlconfig:/config
- ./data:/data
ports:
- 6881:6881
I'm not sure what exactly is going wrong here.
Weirdly, the exact same compose file works on my other system.
The only tag that seems to work is master-amd64.
There was a big change in how memory allocation works between 0.9.8-r16 and master-amd64. If it works for you it's probably better just to use that image until a new release can be made.