sentriz / gonic

music streaming server / free-software subsonic server API implementation
ircs://irc.libera.chat/#gonic
GNU General Public License v3.0
1.58k stars 112 forks source link

Playlist directory not found #449

Closed jbmfg closed 9 months ago

jbmfg commented 9 months ago

sentriz/gonic:latest

Just updated my container and now it wont start due to error:

docker_gonic-gonic-1 | 2024/01/02 21:11:24 checking playlist directory: path does not exist, please provide one docker_gonic-gonic-1 exited with code 0

Here is my docker-compose.yml:


services:
  gonic:
    image: sentriz/gonic:latest
    environment:
      GONIC_MUSIC_PATH: "/music,/newmusic"
      GONIC_PLAYLISTS_PATH: "/media/Storage/docker/gonic/playlists"
    ports:
      - 4747:80
    volumes:
      - /media/Storage/docker/gonic:/data # gonic db etc
      - /media/Storage/docker/gonic/cache:/cache # transcode / covers / etc cache dir
      - /media/Storage/Music:/music:ro
      - /media/Storage/docker/gonic/playlists:/playlists
      - /media/Storage/NewMusic:/newmusic:ro
    restart: always```

I didnt have to have a playlist directory until i updated.  What am i missing?
jbmfg commented 9 months ago

Nevermind. Just looked again at my yml and noticed i put the full path in the environment section. My bad