• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Support Troubleshooting Problem with upgrade and configuration

     
    • 0 Vote(s) - 0 Average

    Problem with upgrade and configuration

    visualblind
    Offline

    Junior Member

    Posts: 24
    Threads: 4
    Joined: 2023 Sep
    Reputation: 0
    Country:United States
    #4
    2025-08-20, 08:19 AM (This post was last modified: 2025-08-20, 08:34 AM by visualblind. Edited 3 times in total.)
    (2025-08-20, 08:07 AM)v0rt Wrote:
    Code:
    version: "3.7"
        volumes:
          - data:/config
          - data:/cache
    volumes:
      data:

    For one thing you are never suppose to use the same volume for both the /config and /cache internal directories.

    I believe the official recommendation is to use bind mounts for the config/cache directories. The way you're doing it now is letting Docker obfuscate that away and it sounds like there's a problem regarding the containers ability to properly read the config files (most likely since you're using a single volume for both /config and /cache) since you stated your instance looses that information upon upgrading.

    If you are hell-bent on using docker volumes instead of bind mounts, then use a different volume for each path:

    Code:
        volumes:
          - config:/config
          - cache:/cache
    volumes:
      config:
      cache:


    My recommendation is to read the docs completely, then start over from scratch.
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    Messages In This Thread
    Problem with upgrade and configuration - by v0rt - 2025-08-19, 06:43 PM
    RE: Problem with upgrade and configuration - by bitmap - 2025-08-20, 12:26 AM
    RE: Problem with upgrade and configuration - by v0rt - 2025-08-20, 08:07 AM
    RE: Problem with upgrade and configuration - by visualblind - 2025-08-20, 08:19 AM
    RE: Problem with upgrade and configuration - by v0rt - 2025-08-20, 08:37 AM
    RE: Problem with upgrade and configuration - by v0rt - 2025-09-01, 02:40 PM

    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode