Hi, after the latest update my syncthing server would not start and the log file keeps repeating
syncthing | 2025-08-21 17:24:48 INF syncthing v2.0.2 “Hafnium Hornet” (go1.24.6 linux-amd64) root@buildkitsandbox 2025-08-17 16:48:08 UTC [modernc-sqlite, noupgrade] (log.pkg=main) syncthing | 2025-08-21 17:24:49 ERR Error opening database (error=“openbase (PRAGMA journal_mode = WAL): disk I/O error (5386)” log.pkg=main)
Here is my docker-compose file:
services: syncthing: image: lscr.io/linuxserver/syncthing:latest container_name: syncthing hostname: syncthing #optional environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Vienna volumes:
- /srv/mergerfs/Datenpool/Docker/syncthing/config:/config
- /srv/mergerfs/Datenpool/xxx/syncthing:/xxx ports:
- 8384:8384
- 22000:22000/tcp
- 22000:22000/udp
- 21027:21027/udp restart: unless-stopped
strangely, the data is stored in /config. Outcomenting the xxx data folder or replacing it with a link to the /config folder for data storage did not improve the situation. Neither did deleting the index folders in the /config.
I would be glad, if you could help me out!
BW, Ben