Folders missing using Docker (after reinstall)

I reinstalled Syncthing on my NAS using the following docker-compose file

  • I made sure to backup the full config folder, which contains the following files (see screenshot below), and reference it in the docker-compose file below
  • and I’m referencing the correct location of the Syncthing folder in my user’s home directory (the second volume linked in the docker-compose)
  • both folders have the same PID and GID, which I set in the docker-compose below

However when I go to the Syncthing GUI, the Folders are empty

services:
  syncthing:
    image: syncthing/syncthing
    container_name: syncthing
    environment:
      - PUID=1026
      - PGID=100
    network_mode: host
    volumes:
      - /volume1/dockerdata/syncthing:/var/syncthing/config
      - /volume1/homes/user/Syncthing:/var/syncthing
    restart: unless-stopped

When I start the container the logs are looking good, this is the output

[start] 22:10:00 INFO: syncthing v1.19.0 "Fermium Flea" (go1.17.6 linux-amd64) docker@build.syncthing.net 2022-01-24 03:45:54 UTC [noupgrade]
[GLMZ3] 22:10:01 INFO: My ID: GLMZ3Y6-2CWRNEI-3HDLVDV-T4NAUPZ-OEPQLSM-RQ2CTKD-756Y7N6-XXXXXX
[GLMZ3] 22:10:02 INFO: Single thread SHA256 performance is 676 MB/s using minio/sha256-simd (127 MB/s using crypto/sha256).
2022/02/07 22:10:02 failed to sufficiently increase receive buffer size (was: 208 kiB, wanted: 2048 kiB, got: 416 kiB). See https://github.com/lucas-clemente/quic-go/wiki/UDP-Receive-Buffer-Size for details.
[GLMZ3] 22:10:02 INFO: Hashing performance is 417.69 MB/s
[GLMZ3] 22:10:02 INFO: Overall send rate is unlimited, receive rate is unlimited
[GLMZ3] 22:10:02 INFO: TCP listener ([::]:22000) starting
[GLMZ3] 22:10:02 INFO: Relay listener (dynamic+https://relays.syncthing.net/endpoint) starting
[GLMZ3] 22:10:02 INFO: QUIC listener ([::]:22000) starting
[GLMZ3] 22:10:02 INFO: Using discovery mechanism: global discovery server https://discovery.syncthing.net/v2/?noannounce&id=LYXKCHX-VI3NYZR-ALCJBHF-WMZYSPK-QG6QJA3-MPFYMSO-U56GTUK-XXXXXXX
[GLMZ3] 22:10:02 INFO: Using discovery mechanism: global discovery server https://discovery-v4.syncthing.net/v2/?nolookup&id=LYXKCHX-VI3NYZR-ALCJBHF-WMZYSPK-QG6QJA3-MPFYMSO-U56GTUK-XXXXXXX

Does anyone know if I’m missing something?

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.