| Age | Commit message (Collapse) | Author |
|
This command seems to inexplicably fail in Docker builds, despite
working on the CLI, similar to what happened with the command directly
above it in c257d6071c3a8dd141d1191062e892d912177d9a. Fix it in the same
way by adding `-k`.
|
|
|
|
|
|
Fix Client Build Scripts
|
|
|
|
|
|
|
|
|
|
This curl command seems to fail inexplicably with an "unable to get
local issuer" error. Use `-k` instead so it doesn't complain.
|
|
* Fix Vaapi Intel packages
https://github.com/jellyfin/jellyfin/issues/1901#issuecomment-593114951
Still need to compile with the packages to verify it builds properly. Arm builds probably need it too.
* Update Dockerfile
* Update Dockerfile
* Update Dockerfile.arm
* Update Dockerfile.arm
* Update Dockerfile.arm64
* Update Dockerfile.arm
* Update Dockerfile.arm
* Update Dockerfile.arm
* Update Dockerfile.arm64
* Update Dockerfile.arm64
* Update Dockerfile.arm
* Update Dockerfile
* shift from curl to git for web install
removed the necessity of curl, tar and package availability and using the source directly
* Update Dockerfile.arm
* Update Dockerfile.arm64
* Update Dockerfile
* Update Dockerfile
* Update Dockerfile.arm
* Update Dockerfile.arm64
* clean up packages and remove unnecessary ARG
* Update Dockerfile
* Update Dockerfile.arm64
* Update Dockerfile
* Update Dockerfile.arm64
* Update Dockerfile
* Update Dockerfile.arm
* Update Dockerfile.arm64
* Explainations
* Update Dockerfile.arm
* Update Dockerfile.arm64
|
|
dotnet doesn't support building arm32 from QEMU (fuck knows why).
also change arm64 image for the sake of consistency
|
|
|
|
verified arm build on raspbian
|
|
Also has the effect of updating ffmpeg to 4.1
|
|
Allow for native building of Docker images. Use buildx if
cross-compilation is needed.
|
|
* Fix Docker Arm Nightly
Updated image base.
There was an error for libssl missing. I attempted to add libssl1.0.0 but it wasn't found so I fell back to libssl-dev.
Much more work needs to be done. ffmpeg is still debian based. I attempted to add jellyfin-ffmpeg but I was having too many issues so I'm saving it for another day, but it at least builds out successfully.
* Fix docker arm64 nightly
|
|
|
|
This causes the jellyfin process to be pid 1 in the container. It can
receive signals like SIGTERM (from "docker stop", for example) and shut
down properly.
|
|
The self contained packages already contains the dotnet runtime
No need to use the dotnet runtime base image.
This should decrease the size of the image.
|
|
|
|
|
|
|
|
The common.build.sh script was removed in #1793 but the Dockerfiles
still used this to perform the dotnet publish. Remove that call and do
the publish explicitly.
|
|
|
|
|
|
|
|
|
|
This allows for building against jellyfin-web master. Ex.
docker build . --build-arg JELLYFIN_WEB_VERSION=master
|
|
|
|
|
|
|
|
Relates to this change https://github.com/multiarch/qemu-user-static/commit/7bdafb96ee59fde53d07a291f9446d2b8957d372
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Use new dotnet image paths
* Update jellyfin-web to 10.3.0-rc1
|
|
|
|
Removed --ffprobe from src files and server/docker scripts.
|
|
|
|
Will always ensure containers use correct path.
Yes - the arm images have a different path than the amd64 one. This is
caused by the amd64 image using ffmpeg from jellyfin/ffmpeg while the
others use ffmpeg from their distro's repos.
|
|
Signed-off-by: Thomas Büttner <thomas@vergesslicher.tech>
|
|
Signed-off-by: Thomas Büttner <thomas@vergesslicher.tech>
|
|
Adds the /cache volume and set it to writeable by all. This allows for
those using jellyfin to continue using it without modifying their
config. However, retaining cache will require one to mount the /cache
volume.
Also make the /config and /media dirs 777 by default. No permissions on
mounted volumes will be changed.
|
|
* Prevent failure when obj exists from host compile
* Enhance readability of disposed stages
* Formatting
|
|
|
|
After the change to runtime args in #749 docker broke.
This fixes it.
|
|
By moving the apt-get layer before the copies, the apt-get layer can be reused with each build, reducing upload/download needed during updates.
Just a small optimization.
|