-
I've set up flood and rtorrent using docker compose using the My flexget rtorrent settings say:
I can exec into the flexget container and both paths are reachable. docker compose looks like this:
I get the following stacktrace:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
It looks like it's saying the |
Beta Was this translation helpful? Give feedback.
Alright, thanks for this. I got it working!
In docker-compose I removed the
image
key and instead added:Created the
rtorrent.Dockerfile
,FROM ubuntu
felt heavy, so i usedbusybox
instead. TheCOPY
suggested was insufficient, it was angry about lack of/etc/rtorrent/rtorrent.rc
, even havingCOPY --from=base /etc/rtorrent /etc/
wasn't sufficient, so i copied everything. Looks like this: