diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2019-11-17 17:29:55 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-17 17:29:55 -0500 |
| commit | 84009b534d54a19eb8a4ff3f781820fad4264307 (patch) | |
| tree | 8b19464ad0d84eab61b39fe91b1a7ed8963f8b41 /Dockerfile | |
| parent | 78e0afae2fba48212dab2986818b5156868592fb (diff) | |
| parent | 435c30aed9d066ab9bbbe268e80065dc928a9fc6 (diff) | |
Merge pull request #1937 from justinfenn/docker-entrypoint-exec
use exec form for Dockerfile entrypoint
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile index c24c321817..2a60bf1845 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,7 +42,7 @@ ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1 EXPOSE 8096 VOLUME /cache /config /media -ENTRYPOINT ./jellyfin/jellyfin \ - --datadir /config \ - --cachedir /cache \ - --ffmpeg /usr/local/bin/ffmpeg +ENTRYPOINT ["./jellyfin/jellyfin", \ + "--datadir", "/config", \ + "--cachedir", "/cache", \ + "--ffmpeg", "/usr/local/bin/ffmpeg"] |
