aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile.arm
diff options
context:
space:
mode:
authorAndrew Rabert <ar@nullsum.net>2019-02-27 20:56:50 -0500
committerAndrew Rabert <ar@nullsum.net>2019-02-27 21:04:37 -0500
commit1d1e6dede94596dc4e613a59c1561fe96447581c (patch)
tree0e7799c11d3c02ab1ef12b2bb41e363503291437 /Dockerfile.arm
parentf384822aa539e0a86c5d3714b74c68549862745b (diff)
Set ffmpeg+ffprobe paths in Docker container
Will always ensure containers use correct path. Yes - the arm images have a different path than the amd64 one. This is caused by the amd64 image using ffmpeg from jellyfin/ffmpeg while the others use ffmpeg from their distro's repos.
Diffstat (limited to 'Dockerfile.arm')
-rw-r--r--Dockerfile.arm6
1 files changed, 5 insertions, 1 deletions
diff --git a/Dockerfile.arm b/Dockerfile.arm
index 69c5d446e..d220763a2 100644
--- a/Dockerfile.arm
+++ b/Dockerfile.arm
@@ -30,4 +30,8 @@ RUN apt-get update \
COPY --from=builder /jellyfin /jellyfin
EXPOSE 8096
VOLUME /cache /config /media
-ENTRYPOINT dotnet /jellyfin/jellyfin.dll --datadir /config --cachedir /cache
+ENTRYPOINT dotnet /jellyfin/jellyfin.dll \
+ --datadir /config \
+ --cachedir /cache \
+ --ffmpeg /usr/bin/ffmpeg \
+ --ffprobe /usr/bin/ffprobe