mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Merge pull request #226 from nvllsvm/grandmas_ugly_perm
Remove PUID and PGUID env vars, stop chowning
This commit is contained in:
commit
be345cc5f2
10
Dockerfile
10
Dockerfile
@ -9,10 +9,10 @@ RUN export DOTNET_CLI_TELEMETRY_OPTOUT=1 \
|
|||||||
|
|
||||||
FROM microsoft/dotnet:${DOTNET_VERSION}-runtime
|
FROM microsoft/dotnet:${DOTNET_VERSION}-runtime
|
||||||
COPY --from=builder /jellyfin /jellyfin
|
COPY --from=builder /jellyfin /jellyfin
|
||||||
RUN apt update \
|
|
||||||
&& apt install -y ffmpeg gosu
|
|
||||||
EXPOSE 8096
|
EXPOSE 8096
|
||||||
|
RUN apt update \
|
||||||
|
&& apt install -y ffmpeg
|
||||||
VOLUME /config /media
|
VOLUME /config /media
|
||||||
ENV PUID=1000 PGID=1000
|
ENTRYPOINT if [ -n "$PUID$PGUID" ]; \
|
||||||
ENTRYPOINT chown $PUID:$PGID /config /media \
|
then echo "PUID/PGID are deprecated. Use Docker user param." >&2; exit 1; \
|
||||||
&& gosu $PUID:$PGID dotnet /jellyfin/jellyfin.dll -programdata /config
|
else dotnet /jellyfin/jellyfin.dll -programdata /config; fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user