Compare commits

...

2 commits

Author SHA1 Message Date
97c3a24db7
chore: update jellyfin deps to 10.10.0. 2024-10-27 20:10:20 +01:00
4b34971700
fix: always pull newest jellyfin version. 2024-10-27 20:07:25 +01:00
2 changed files with 6 additions and 3 deletions

View file

@ -8,8 +8,8 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Jellyfin.Controller" Version="10.9.7" />
<PackageReference Include="Jellyfin.Model" Version="10.9.7" />
<PackageReference Include="Jellyfin.Controller" Version="10.10.0" />
<PackageReference Include="Jellyfin.Model" Version="10.10.0" />
</ItemGroup>
</Project>

View file

@ -1,5 +1,7 @@
#!/bin/sh
JELLYFIN=jellyfin/jellyfin
set -eu
cd "$(dirname "$0")"
pwd
@ -10,9 +12,10 @@ pwd
pwd
mkdir -p ./cache ./media ./config/plugins/jellyfin-smart-playlist
cp ../Jellyfin.Plugin.SmartPlaylist/bin/Debug/net8.0/jellyfin-smart-playlist.dll ./config/plugins/jellyfin-smart-playlist/
docker pull "$JELLYFIN"
docker run --rm --user "$(id -u):$(id -g)" \
-v ./cache:/cache \
-v ./config:/config \
-v ./media:/media \
-p 8096:8096 \
jellyfin/jellyfin
"$JELLYFIN"