|
@@ -24,6 +24,8 @@ ARG APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=DontWarn
|
|
|
ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility"
|
|
|
|
|
|
COPY --from=qemu /usr/bin/qemu-arm-static /usr/bin
|
|
|
+
|
|
|
+# curl: setup & healcheck
|
|
|
RUN apt-get update \
|
|
|
&& apt-get install --no-install-recommends --no-install-suggests -y ca-certificates gnupg curl && \
|
|
|
curl -ks https://repo.jellyfin.org/debian/jellyfin_team.gpg.key | apt-key add - && \
|
|
@@ -42,7 +44,7 @@ RUN apt-get update \
|
|
|
vainfo \
|
|
|
libva2 \
|
|
|
locales \
|
|
|
- && apt-get remove curl gnupg -y \
|
|
|
+ && apt-get remove gnupg -y \
|
|
|
&& apt-get clean autoclean -y \
|
|
|
&& apt-get autoremove -y \
|
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
@@ -75,3 +77,8 @@ ENTRYPOINT ["./jellyfin/jellyfin", \
|
|
|
"--datadir", "/config", \
|
|
|
"--cachedir", "/cache", \
|
|
|
"--ffmpeg", "/usr/lib/jellyfin-ffmpeg/ffmpeg"]
|
|
|
+
|
|
|
+HEALTHCHECK --interval=30s --timeout=30s --start-period=10s --retries=3 \
|
|
|
+ # https://github.com/jellyfin/jellyfin/issues/5760#issuecomment-852297561
|
|
|
+ CMD curl http://localhost:$(grep -oP '(?<=PublicPort>)[^<]+' /config/config/network.xml)/$(grep -oP '(?<=BaseUrl>)[^<]+' /config/config/network.xml)health \
|
|
|
+ || exit 1
|