Skip to content

Author Images Disappear After Docker Restart in Audiobookshelf v2.17.2 #3640

Answered by nichwall
vawaver asked this question in Q&A
Discussion options

You must be logged in to vote

You just need to add a /metadata mount to your volumes section, such as below:

I'm not sure what the ABS_MEDIA_ROOT is that you have, that is not used by the docker container.

services:
  audiobookshelf:
    image: ghcr.io/advplyr/audiobookshelf:latest
    container_name: audiobookshelf
    restart: unless-stopped
    ports:
      - "13378:80"         # Port pre webové rozhranie
    environment:
      - TZ=Europe/Bratislava # Nastavenie časovej zóny
    volumes:
      - /home/tony/audiobookshelf/config:/config      # Konfiguračné súbory
      - /home/tony/audiobookshelf/metadata:/metadata   # <--- Just add this
      - /home/tony/Media-files/audiobooks:/audiobooks      # Cesta na mediálne…

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@vawaver
Comment options

@nichwall
Comment options

Answer selected by vawaver
@vawaver
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants