Compare commits
No commits in common. "97c3a24db7483434ceb9d75e8eef81e246aa8b4a" and "8402e3d4ff65f4e54a9c5567b901740402408f29" have entirely different histories.
97c3a24db7
...
8402e3d4ff
2 changed files with 3 additions and 6 deletions
|
@ -8,8 +8,8 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Jellyfin.Controller" Version="10.10.0" />
|
<PackageReference Include="Jellyfin.Controller" Version="10.9.7" />
|
||||||
<PackageReference Include="Jellyfin.Model" Version="10.10.0" />
|
<PackageReference Include="Jellyfin.Model" Version="10.9.7" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
JELLYFIN=jellyfin/jellyfin
|
|
||||||
|
|
||||||
set -eu
|
set -eu
|
||||||
cd "$(dirname "$0")"
|
cd "$(dirname "$0")"
|
||||||
pwd
|
pwd
|
||||||
|
@ -12,10 +10,9 @@ pwd
|
||||||
pwd
|
pwd
|
||||||
mkdir -p ./cache ./media ./config/plugins/jellyfin-smart-playlist
|
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/
|
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)" \
|
docker run --rm --user "$(id -u):$(id -g)" \
|
||||||
-v ./cache:/cache \
|
-v ./cache:/cache \
|
||||||
-v ./config:/config \
|
-v ./config:/config \
|
||||||
-v ./media:/media \
|
-v ./media:/media \
|
||||||
-p 8096:8096 \
|
-p 8096:8096 \
|
||||||
"$JELLYFIN"
|
jellyfin/jellyfin
|
||||||
|
|
Loading…
Reference in a new issue