logo
docker.io/syncthing/syncthing:2.1.3
linux/amd64 docker.io

Syncthing

Syncthing是一个开源的文件同步工具,用于将数据从一个设备同步到另一个设备。

10
浏览次数
41.64MB
镜像大小
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing:2.1.3
源镜像
docker.io/syncthing/syncthing:2.1.3
镜像ID
sha256:e9ad3c7cfe5c9904f54f61d69d19b2f58300fee3cefa1ab29f78237b28de3b63
镜像 TAG
2.1.3
镜像大小
41.64MB
平台架构
linux/amd64
镜像源
docker.io
CMD
启动入口
/bin/entrypoint.sh /bin/syncthing
工作目录
/
OS/平台
linux/amd64
镜像创建
2026-08-05T12:58:34.901669593Z
同步时间
2026-09-02 12:53
浏览量
10 次
贡献者
🔌 开放端口 4
21027/udp 22000/tcp 22000/udp 8384/tcp
📁 目录挂载 1
 /var/syncthing
⚙️ 环境变量 6
KeyValue
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 0
PUID=1000 1
PGID=1000 2
HOME=/var/syncthing 3
STGUIADDRESS=0.0.0.0:8384 4
STHOMEDIR=/var/syncthing/config 5
🏷️ 镜像标签 9
KeyValue
The Syncthing Project org.opencontainers.image.authors
https://docs.syncthing.net org.opencontainers.image.documentation
MPL-2.0 org.opencontainers.image.licenses
946e2b83a1f6c6ae119427c09e0a5802940b82ff org.opencontainers.image.revision
https://github.com/syncthing/syncthing org.opencontainers.image.source
Syncthing org.opencontainers.image.title
https://syncthing.net org.opencontainers.image.url
The Syncthing Project org.opencontainers.image.vendor
v2.1.3 org.opencontainers.image.version
🛡️ 镜像安全扫描
alpine 3.24.1 Trivy 2026-09-02 12:53 查看完整报告
13
低危 LOW
7
中危 MEDIUM
11
高危 HIGH
1
严重 CRITICAL
受影响目标 (2)
docker.io/syncthing/syncthing:2.1.3 (alpine 3.24.1) alpine bin/syncthing gobinary

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing:2.1.3
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing:2.1.3  docker.io/syncthing/syncthing:2.1.3

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing:2.1.3
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing:2.1.3  docker.io/syncthing/syncthing:2.1.3

Shell快速替换命令

sed -i 's#syncthing/syncthing:2.1.3#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing:2.1.3#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing:2.1.3 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing:2.1.3  docker.io/syncthing/syncthing:2.1.3'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing:2.1.3 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing:2.1.3  docker.io/syncthing/syncthing:2.1.3'

镜像构建历史


# 2026-08-05 20:58:34  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/bin/entrypoint.sh" "/bin/syncthing"]
                        
# 2026-08-05 20:58:34  0.00B 执行命令并创建新的镜像层
RUN |1 TARGETARCH=amd64 /bin/sh -c chmod 755 /bin/entrypoint.sh # buildkit
                        
# 2026-08-05 20:58:34  0.00B 设置环境变量 STHOMEDIR
ENV STHOMEDIR=/var/syncthing/config
                        
# 2026-08-05 20:58:34  0.00B 设置环境变量 STGUIADDRESS
ENV STGUIADDRESS=0.0.0.0:8384
                        
# 2026-08-05 20:58:34  0.00B 指定检查容器健康状态的命令
HEALTHCHECK {Test:[CMD-SHELL curl -fkLsS -m 2 127.0.0.1:8384/rest/noauth/health | grep -o --color=never OK || exit 1] Interval:1m0s Timeout:10s StartPeriod:0s StartInterval:0s Retries:0}
                        
# 2026-08-05 20:58:34  0.00B 设置环境变量 PUID PGID HOME
ENV PUID=1000 PGID=1000 HOME=/var/syncthing
                        
# 2026-08-05 20:58:34  737.00B 复制新文件或目录到容器中
COPY /src/script/docker-entrypoint.sh /bin/entrypoint.sh # buildkit
                        
# 2026-08-05 20:58:34  26.89MB 复制新文件或目录到容器中
COPY /src/syncthing-linux-amd64 /bin/syncthing # buildkit
                        
# 2026-08-05 20:58:18  6.34MB 执行命令并创建新的镜像层
RUN |1 TARGETARCH=amd64 /bin/sh -c apk add --no-cache ca-certificates curl libcap su-exec tzdata # buildkit
                        
# 2026-08-05 20:58:18  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/var/syncthing]
                        
# 2026-08-05 20:58:18  0.00B 声明容器运行时监听的端口
EXPOSE [21027/udp 22000/tcp 22000/udp 8384/tcp]
                        
# 2026-08-05 20:58:18  0.00B 添加元数据标签
LABEL org.opencontainers.image.authors=The Syncthing Project org.opencontainers.image.url=https://syncthing.net org.opencontainers.image.documentation=https://docs.syncthing.net org.opencontainers.image.source=https://github.com/syncthing/syncthing org.opencontainers.image.vendor=The Syncthing Project org.opencontainers.image.licenses=MPL-2.0 org.opencontainers.image.title=Syncthing
                        
# 2026-08-05 20:58:18  0.00B 定义构建参数
ARG TARGETARCH=amd64
                        
# 2026-06-16 08:01:29  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2026-06-16 08:01:29  8.42MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.24.1-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:e9ad3c7cfe5c9904f54f61d69d19b2f58300fee3cefa1ab29f78237b28de3b63",
    "RepoTags": [
        "syncthing/syncthing:2.1.3",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing:2.1.3"
    ],
    "RepoDigests": [
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing@sha256:2079da41a8687c2c082965ad6b8f31c19749921b2bdfd6019f7aefc5384f7587"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-08-05T12:58:34.901669593Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "21027/udp": {},
            "22000/tcp": {},
            "22000/udp": {},
            "8384/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "PUID=1000",
            "PGID=1000",
            "HOME=/var/syncthing",
            "STGUIADDRESS=0.0.0.0:8384",
            "STHOMEDIR=/var/syncthing/config"
        ],
        "Cmd": null,
        "Healthcheck": {
            "Test": [
                "CMD-SHELL",
                "curl -fkLsS -m 2 127.0.0.1:8384/rest/noauth/health | grep -o --color=never OK || exit 1"
            ],
            "Interval": 60000000000,
            "Timeout": 10000000000
        },
        "Image": "",
        "Volumes": {
            "/var/syncthing": {}
        },
        "WorkingDir": "/",
        "Entrypoint": [
            "/bin/entrypoint.sh",
            "/bin/syncthing"
        ],
        "OnBuild": null,
        "Labels": {
            "org.opencontainers.image.authors": "The Syncthing Project",
            "org.opencontainers.image.documentation": "https://docs.syncthing.net",
            "org.opencontainers.image.licenses": "MPL-2.0",
            "org.opencontainers.image.revision": "946e2b83a1f6c6ae119427c09e0a5802940b82ff",
            "org.opencontainers.image.source": "https://github.com/syncthing/syncthing",
            "org.opencontainers.image.title": "Syncthing",
            "org.opencontainers.image.url": "https://syncthing.net",
            "org.opencontainers.image.vendor": "The Syncthing Project",
            "org.opencontainers.image.version": "v2.1.3"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 41639231,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/73af9b97e0d091a2c7465502173c098bc3b8234934d7b774f1c5f05fa6954b97/diff:/var/lib/docker/overlay2/f62fb34860c75e2fd2ee8169ea33f3546a3339fdf7fa004521f57108e25296ac/diff:/var/lib/docker/overlay2/78d1d2270abd261c6b37b6b630459d2263e8f6e398f6c51f88e6b91fffe66535/diff:/var/lib/docker/overlay2/d51bd9f442769618005c9be653661c047116bf4ebe32b04db2ad4ca7bebb792d/diff",
            "MergedDir": "/var/lib/docker/overlay2/9dd6bcd7fbd77c10e2384e9fbdda9d637d7d4fd176519218fabf99f6f0b07de7/merged",
            "UpperDir": "/var/lib/docker/overlay2/9dd6bcd7fbd77c10e2384e9fbdda9d637d7d4fd176519218fabf99f6f0b07de7/diff",
            "WorkDir": "/var/lib/docker/overlay2/9dd6bcd7fbd77c10e2384e9fbdda9d637d7d4fd176519218fabf99f6f0b07de7/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:34884abbe92863fce933ed7c39c0e045631af0ed86d5cc0dfbdf9fdca426ce3c",
            "sha256:dd2ef79eb0cdb33af66ffce7e2480c1756cd52d2e3e82ec148d21f4251457e06",
            "sha256:043671057edc0d41a122fbeb72eea1d22aca2f5b0b49cc1de938b50c51fc51d9",
            "sha256:0c061384ec6544256a5c44a70ab586d8a479d94b40b413bc378d1bdc16137cf3",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-09-02T12:53:51.752950351+08:00"
    }
}

更多版本

docker.io/syncthing/syncthing:1.27.10

linux/amd64 docker.io40.36MB2024-09-02 22:15
650

docker.io/syncthing/syncthing:1.27

linux/amd64 docker.io40.26MB2024-10-16 14:35
628

docker.io/syncthing/syncthing:1.28.0

linux/amd64 docker.io41.18MB2024-11-07 15:19
628

docker.io/syncthing/syncthing:1.28.1

linux/amd64 docker.io41.20MB2024-12-18 20:19
428

docker.io/syncthing/syncthing:1.29.3

linux/amd64 docker.io40.25MB2025-03-23 00:01
448

docker.io/syncthing/syncthing:v2

linux/amd64 docker.io48.94MB2025-04-15 08:44
690

docker.io/syncthing/syncthing:1.30

linux/amd64 docker.io41.09MB2025-07-20 19:30
381

docker.io/syncthing/syncthing:2

linux/arm64 docker.io49.48MB2025-08-12 16:10
394

docker.io/syncthing/syncthing:latest

linux/arm64 docker.io49.35MB2025-08-29 17:35
433

docker.io/syncthing/syncthing:2.0.3

linux/amd64 docker.io49.93MB2025-09-02 02:36
301

docker.io/syncthing/syncthing:2.0.3

linux/arm64 docker.io49.35MB2025-09-02 14:25
280

docker.io/syncthing/syncthing:2.0.8

linux/arm64 docker.io49.38MB2025-09-09 13:32
342

docker.io/syncthing/syncthing:2.0.8

linux/amd64 docker.io49.97MB2025-09-09 14:31
348

docker.io/syncthing/syncthing:latest

linux/amd64 docker.io50.25MB2025-12-09 19:36
310

docker.io/syncthing/syncthing:2.1.0

linux/amd64 docker.io41.78MB2026-05-27 17:16
158

docker.io/syncthing/syncthing:2.1.1

linux/amd64 docker.io41.62MB2026-06-09 11:55
164

docker.io/syncthing/syncthing:2.1.2

linux/amd64 docker.io41.53MB2026-08-15 09:54
56

docker.io/syncthing/syncthing:2.1.4-rc.2

linux/arm64 docker.io40.51MB2026-09-02 10:57
14

docker.io/syncthing/syncthing:2.1.4-rc.2

linux/amd64 docker.io41.42MB2026-09-02 10:58
13

docker.io/syncthing/syncthing:2.1.3

linux/arm64 docker.io40.76MB2026-09-02 12:53
10

docker.io/syncthing/syncthing:2.1.3

linux/amd64 docker.io41.64MB2026-09-02 12:53
9
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×