mirror of
https://github.com/zoriya/flood.git
synced 2025-12-06 07:16:18 +00:00
13 lines
282 B
Docker
13 lines
282 B
Docker
ARG FLOOD_VERSION=latest
|
|
ARG RTORRENT_VERSION=latest
|
|
|
|
FROM jesec/rtorrent:$RTORRENT_VERSION as rtorrent
|
|
|
|
FROM jesec/flood:$FLOOD_VERSION as flood
|
|
|
|
# Install rTorrent
|
|
COPY --from=rtorrent / /
|
|
|
|
# Flood with managed rTorrent daemon
|
|
ENTRYPOINT ["flood", "--host=0.0.0.0", "--rtorrent"]
|