Skip to content

flexget with rtorrent in docker compose? #78

Answered by binamov
binamov asked this question in Q&A
Discussion options

You must be logged in to vote

Alright, thanks for this. I got it working!

In docker-compose I removed the image key and instead added:

    build:
      context: .
      dockerfile: rtorrent.Dockerfile

Created the rtorrent.Dockerfile , FROM ubuntu felt heavy, so i used busybox instead. The COPY suggested was insufficient, it was angry about lack of /etc/rtorrent/rtorrent.rc, even having COPY --from=base /etc/rtorrent /etc/ wasn't sufficient, so i copied everything. Looks like this:

FROM jesec/rtorrent as base

FROM busybox

COPY --from=base / /

# Run as 1001:1001 user
ENV HOME=/home/download
USER 1001:1001

# rTorrent
ENTRYPOINT ["rtorrent"]

Replies: 1 comment 6 replies

Comment options

You must be logged in to vote
6 replies
@kannibalox
Comment options

@binamov
Comment options

@kannibalox
Comment options

@binamov
Comment options

Answer selected by binamov
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants