Windows Users: Small guide for anyone that gets stuck
Guide for anyone that get stuck on Windows
When pasting the commands in the guide you might get errors with mounting the certificate files or get stuck at the password part if you're not familiar with syntax or formatting on Windows.
Errors like:
docker: Error response from daemon: invalid mode: /certificates/author.p12
or
install failed[118, -12], reason: Check certificate error : :Invalid certificate chain with certificate in signature.:<-3>
despite the path and the password being correct.
The correct format of your command should be as below:
- On windows you should remove the
$(pwd)part - For the password remove the two
'between your password and just enter your password without the quotes.
The command should look like below:
docker run --rm -v "path to author.p12":/certificates/author.p12 -v "path to distributor.p12":/certificates/distributor.p12 ghcr.io/georift/install-jellyfin-tizen YourIP Jellyfin "" YourPassword
This helped me, however not until I switched to WSL2 CLI rather than Powershell. Within Powershell the "docker run" argument syntax must be different as it kept taking my password as a Release Tag. The same command (per OP's post) worked perfectly from WSL2.
This saved me! The single quotes around the password were causing issues. Thanks so much!
Thanks for the tip, this would be great to drop into the docs/troubleshooting.md file if anyone would like to add it.