Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/7b1190cb28bc1a423068a23303ff43f30b3c47ed
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
15 additions and
6 deletions
@ -64,6 +64,15 @@ jobs:
- job : BuildDocker
displayName : 'Build Docker'
strategy:
matrix:
Docker.amd64:
BuildConfiguration : amd64
Docker.arm64:
BuildConfiguration : arm64
Docker.armhf:
BuildConfiguration : armhf
pool:
vmImage : 'ubuntu-latest'
@ -75,11 +84,11 @@ jobs:
repository : 'jellyfin/jellyfin-server'
command : buildAndPush
buildContext : '.'
Dockerfile : 'deployment/Dockerfile.docker '
Dockerfile : 'deployment/Dockerfile.docker .$(BuildConfiguration) '
containerRegistry : Docker Hub
tags : |
unstable-$(Build.BuildNumber)
unstable
unstable-$(Build.BuildNumber) -$(BuildConfiguration)
unstable -$(BuildConfiguration)
- task : Docker@2
displayName : 'Push Stable Image'
@ -88,11 +97,11 @@ jobs:
repository : 'jellyfin/jellyfin-server'
command : buildAndPush
buildContext : '.'
Dockerfile : 'deployment/Dockerfile.docker '
Dockerfile : 'deployment/Dockerfile.docker .$(BuildConfiguration) '
containerRegistry : Docker Hub
tags : |
stable-$(Build.BuildNumber)
stable
stable-$(Build.BuildNumber) -$(BuildConfiguration)
stable -$(BuildConfiguration)
- job : CollectArtifacts
displayName : 'Collect Artifacts'