mirror of
https://github.com/zoriya/flood.git
synced 2025-12-05 23:06:20 +00:00
13 lines
282 B
Docker
13 lines
282 B
Docker
ARG FLOOD_VERSION=latest
|
|
ARG RTORRENT_VERSION=latest
|
|
|
|
FROM docker.io/jesec/rtorrent:$RTORRENT_VERSION as rtorrent
|
|
|
|
FROM docker.io/jesec/flood:$FLOOD_VERSION as flood
|
|
|
|
# Install rTorrent
|
|
COPY --from=rtorrent / /
|
|
|
|
# Flood with managed rTorrent daemon
|
|
ENV FLOOD_OPTION_RTORRENT="true"
|