sqlite sur smb cifs

Sqlite.SqliteException (0x80004005): SQLite Error 5: ‘database is locked’.

I’m running jellyfin in docker and got this error because my config file was mounted over samba / cifs. The solution was to add nobrl to the mount options.

volumes:
  jellyfin-data:
    driver_opts:
      type: "cifs"
      device: "//192.168.1.69/whatever/Jellyfin"
      o: "addr=192.168.19.10,rw"
      o: "uid=0,username=phanton,password=8517,nobrl"

Leave a Comment