![]() |
SOLVED: Container Not Launching - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +--- Thread: SOLVED: Container Not Launching (/t-solved-container-not-launching) Pages:
1
2
|
RE: Container Not Launching - jkboi - 2024-09-01 It doesn't seem like docker is installed. Docker compose seems to be though
This is what I get when I do docker compose version
and then when I do docker --version I get this
So I dunno why it isn't showing anything. Do I have to activate it somehow? RE: Container Not Launching - AGiLiT - 2024-09-01 (2024-09-01, 10:18 PM)jkboi Wrote: This has nothing to do with that. This is a brand spanking new container on a server that hasn't had JF b4. Not so sure it's not related. You could test by changing your install script where it says 'jellyfin:latest' to jellyfin:10.8.13' and seeing what happens... RE: Container Not Launching - jkboi - 2024-09-01 (2024-09-01, 11:21 PM)AGiLiT Wrote:(2024-09-01, 10:18 PM)jkboi Wrote: This has nothing to do with that. This is a brand spanking new container on a server that hasn't had JF b4. It isn't. Nothing docker related is working. I am able to connect to my 10.9 instance on another server I just do not know how to setup docker compose successfully. RE: Container Not Launching - jkboi - 2024-09-01 So I think the issue is it seems docker is installed through snap for some reason instead of apt. Should I uninstall and reinstall through apt so stuff matches or just leave it as is? RE: Container Not Launching - Efficient_Good_5784 - 2024-09-02 (2024-09-01, 11:21 PM)AGiLiT Wrote: Not so sure it's not related. You could test by changing your install script where it says 'jellyfin:latest' to jellyfin:10.8.13' and seeing what happens...This sounds like a different issue than what the OP is facing. You updated to v10.9.# and one of your clients is refusing to connect. If you're not able to solve that, please open a new thread to see if anyone can provide you with help on how to fix that issue. The issue in this thread is that @jkboi can't get the container to launch with Docker. The Jellyfin version shouldn't matter here as:
RE: Container Not Launching - TheDreadPirate - 2024-09-02 Uninstall the snap and follow Docker's docs to install via apt. Add their repo then install docker engine. You will also need to install the docker compose plugin. https://docs.docker.com/engine/install/ubuntu/ RE: Container Not Launching - jkboi - 2024-09-02 (2024-09-02, 12:19 AM)TheDreadPirate Wrote: Uninstall the snap and follow Docker's docs to install via apt. Add their repo then install docker engine. You will also need to install the docker compose plugin. It is getting somewhere now!!!!!! Thank you so much for your help! I am now getting this permissions error.
you did fix my main issue now though so thank you! It launched when I ran it with sudo. Is this something I should change with a permission or something or should I always sudo docker compose up
RE: Container Not Launching - TheDreadPirate - 2024-09-02 There will be a "docker" group. Add your user to the docker group then you don't have to use sudo for docker commands. You will have to log out and log back in for the change to take affect. RE: Container Not Launching - jkboi - 2024-09-02 (2024-09-02, 01:27 AM)TheDreadPirate Wrote: There will be a "docker" group. Add your user to the docker group then you don't have to use sudo for docker commands. You will have to log out and log back in for the change to take affect. Thank you again so much! I was bashing my head against a wall it felt trying to test everything! I appreciate the help! |