distribution/containers: fix entrypoint (#261)

Fixes #260
This commit is contained in:
ᗪєνιη ᗷυнʟ
2021-04-01 07:00:16 -04:00
committed by GitHub
parent 2d860d9b7c
commit 40d6c2ac50
2 changed files with 2 additions and 4 deletions
+1 -2
View File
@@ -25,5 +25,4 @@ USER download
EXPOSE 3000
# Flood
ENTRYPOINT ["/sbin/tini", "--"]
CMD ["flood", "--host=0.0.0.0"]
ENTRYPOINT ["/sbin/tini", "--", "flood", "--host=0.0.0.0"]
+1 -2
View File
@@ -9,5 +9,4 @@ FROM jesec/flood:$FLOOD_VERSION as flood
COPY --from=rtorrent / /
# Flood with managed rTorrent daemon
ENTRYPOINT ["/sbin/tini", "--"]
CMD ["flood", "--host=0.0.0.0", "--rtorrent"]
ENTRYPOINT ["/sbin/tini", "--", "flood", "--host=0.0.0.0", "--rtorrent"]