2024-09-01, 06:52 PM
Hello friends! I am having an issue where I cannot get the JF container I am trying to launch on my Ubuntu 24.04 server running 6.0.36 with
This is the contents of my compose.yml
This is the response to something TheDreadPirate asked me to type in earlier.
As well as the original message that explains some of the stuff I tried trying to get this to launch
"hey there! trying to launch a New JF container with docker compose and I keep getting the error no configuration file provided: not found. I have the docker compose
this is the permissions for it bc I am guessing it's maybe a permissions thing.
I am running the docker compose up command in this same dir but it's still mad
and I tried doing it with the file named docker-compose.yaml as well."
if there is anything else that I can provide to try to help fix the issue please let me know. I am losing my mind bc I feel like this should be really simple and I feel like I just keep missing something super basic.
docker compose version
2.20.3.This is the contents of my compose.yml
jkboyo@limitedpower:/srv/appdata/jellyfin$ cat compose.yml
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=1000
- TZ=EST/UTC
- JELLYFIN_PublishedServerUrl=192.168.0.5 #optional
volumes:
- /srv/appdata/jellyfin:/config
- /media/vault/shows:/data/tvshows
- /media/vault/movies:/data/movies
- /media/vault/homevideos:/data/homevideos
- /media/vault/music:/data/music
ports:
- 8096:8096
- 8920:8920 #optional
- 7359:7359/udp #optional
- 1900:1900/udp #optional
restart: unless-stopped
This is the response to something TheDreadPirate asked me to type in earlier.
jkboyo@limitedpower:/srv/appdata/jellyfin$ sudo journalctl -u docker.service -n 200 --no-pager
-- No entries --
As well as the original message that explains some of the stuff I tried trying to get this to launch
"hey there! trying to launch a New JF container with docker compose and I keep getting the error no configuration file provided: not found. I have the docker compose
jkboyo@limitedpower:/srv/appdata/jellyfin$ ls -l
total 8
-rw-r--r-- 1 root root 598 Aug 31 21:40 docker-compose.yml
this is the permissions for it bc I am guessing it's maybe a permissions thing.
I am running the docker compose up command in this same dir but it's still mad
and I tried doing it with the file named docker-compose.yaml as well."
if there is anything else that I can provide to try to help fix the issue please let me know. I am losing my mind bc I feel like this should be really simple and I feel like I just keep missing something super basic.