提交问题前,请尽量一次性提供完整信息。
信息不完整、无明确复现路径、缺少关键日志的帖子,将不予处理并直接关闭;请补充完整信息后重新发帖。
请先按下方格式填写;除以下基础信息外,也请根据你遇到的问题补充截图、录屏、报错提示、复现步骤等信息,便于更快定位和处理。
应用中心第三方开发者上架应用问题可以联系对应开发者反馈。
系统版本:X86
设备环境:物理机、局域网、系统版本号:1.1.3107
BUG现象:我通过局域网电脑访问syncthing页面,添加Photos共享文件夹后,出现Failed to create folder marker报错;给Photos文件夹syncthing权限后故障依旧



出现频率:必现
联系方式:18683506380
日志文件:
2026-06-24 09:47:51 INF Detected NAT type (uri=quic://0.0.0.0:22000 type="Full cone NAT" log.pkg=connections)
2026-06-24 09:47:51 INF Resolved external address (uri=quic://0.0.0.0:22000 address=quic://112.18.39.91:22000 via=stun.internetcalls.com:3478 log.pkg=connections)
2026-06-24 09:47:52 INF Established secure connection (device=ISOSYSA connection.local="[::]:22000" connection.remote=222.208.203.104:22000 connection.type=quic-client connection.lan=false connection.crypto=TLS1.3-TLS_AES_128_GCM_SHA256 connection.prio=40 connection.id=65RS4NSFJV14GSHFCHAAARC8GI log.pkg=connections)
2026-06-24 09:47:52 INF Additional device connection (device=ISOSYSA address=222.208.203.104:22000 count=1 log.pkg=model)
2026-06-24 09:47:54 INF Established secure connection (device=ISOSYSA connection.local=172.25.0.2:22000 connection.remote=222.208.203.104:22000 connection.type=quic-server connection.lan=false connection.crypto=TLS1.3-TLS_AES_128_GCM_SHA256 connection.prio=40 connection.id=65RS4O408UP0QHKKVSNLTNQLH4 log.pkg=connections)
2026-06-24 09:47:54 INF Additional device connection (device=ISOSYSA address=222.208.203.104:22000 count=2 log.pkg=model)
2026-06-24 09:48:01 INF Detected NAT services (count=0 log.pkg=nat)
2026-06-24 09:48:30 INF Joined relay (uri=relay://222.222.73.53:22067 log.pkg=relay/client)
2026-06-24 09:54:00 INF Removing folder (folder.label=Photos folder.id=whzyj-kpmh4 folder.type=sendreceive log.pkg=model)
2026-06-24 09:54:00 INF Removed folder (folder.label=Photos folder.id=whzyj-kpmh4 folder.type=sendreceive log.pkg=model)
2026-06-24 09:54:12 INF Adding folder (folder.label=Photos folder.id=lp7ky-xqpw5 folder.type=sendreceive log.pkg=model)
2026-06-24 09:54:12 ERR Failed to create folder marker (folder.label=Photos folder.id=lp7ky-xqpw5 folder.type=sendreceive error="open /vol1/1000/Photos/.stfolder/syncthing-folder-341eb2.txt: operation not permitted" log.pkg=model)
2026-06-24 09:54:12 INF Ready to synchronize (folder.label=Photos folder.id=lp7ky-xqpw5 folder.type=sendreceive log.pkg=model)
2026-06-24 09:54:12 INF Completed initial scan (folder.label=Photos folder.id=lp7ky-xqpw5 folder.type=sendreceive log.pkg=model)
2026-06-24 10:17:43 INF Sent usage report (version=3 log.pkg=ur)
docker compose信息
services:
syncthing: # 服务名称
image: syncthing/syncthing # 使用的镜像
container_name: syncthing-app # 容器名称
restart: always # 重启策略:总是重启
user: "1000:1001"
environment: # 环境变量
- TZ=Asia/Shanghai # 设置时区
ports:
- "8384:8384" # 端口映射
- "22000:22000/tcp" # 端口映射
- "22000:22000/udp" # 端口映射
- "21027:21027/udp" # 端口映射
volumes: # 卷挂载
- ./syncthing:/var/syncthing:rw # 配置目录挂载到容器内
- /vol1/1000:/vol1/1000:rslave # 主机目录挂载到容器内,并设置为 rslave
networks:
- syncthing-net # 加入自定义网络
- networks: # 隔离容器网络环境,且容器间可通过名称访问
syncthing-net:
name: syncthing-net # 网络名称:syncthing-network