Compare commits
2 commits
8402e3d4ff
...
97c3a24db7
Author | SHA1 | Date | |
---|---|---|---|
97c3a24db7 | |||
4b34971700 |
2 changed files with 6 additions and 3 deletions
|
@ -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>
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue