docker.io/syncthing/syncthing:latest linux/amd64

docker.io/syncthing/syncthing:latest - 国内下载镜像源 浏览次数:10

温馨提示:此镜像为latest tag镜像,本站无法保证此版本为最新镜像

Syncthing

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

源镜像 docker.io/syncthing/syncthing:latest
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing:latest
镜像ID sha256:9f644be97c8a9597cc2c3b554d8b4453cb2c814ed1c65d0611b35034dda10436
镜像TAG latest
大小 50.25MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD
启动入口 /bin/entrypoint.sh /bin/syncthing
工作目录 /
OS/平台 linux/amd64
浏览量 10 次
贡献者
镜像创建 2025-12-02T07:50:36.973083257Z
同步时间 2025-12-09 19:36
更新时间 2025-12-10 12:29
开放端口
21027/udp 22000/tcp 22000/udp 8384/tcp
目录挂载
/var/syncthing
环境变量
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
镜像标签
The Syncthing Project: org.opencontainers.image.authors https://docs.syncthing.net: org.opencontainers.image.documentation MPL-2.0: org.opencontainers.image.licenses ce884e5d7253ed82379f918e169438eb64fcece0: 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.0.12: org.opencontainers.image.version

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2025-12-02 15:50:36  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/bin/entrypoint.sh" "/bin/syncthing"]
                        
# 2025-12-02 15:50:36  0.00B 执行命令并创建新的镜像层
RUN |1 TARGETARCH=amd64 /bin/sh -c chmod 755 /bin/entrypoint.sh # buildkit
                        
# 2025-12-02 15:50:36  0.00B 设置环境变量 STHOMEDIR
ENV STHOMEDIR=/var/syncthing/config
                        
# 2025-12-02 15:50:36  0.00B 设置环境变量 STGUIADDRESS
ENV STGUIADDRESS=0.0.0.0:8384
                        
# 2025-12-02 15:50:36  0.00B 指定检查容器健康状态的命令
HEALTHCHECK &{["CMD-SHELL" "curl -fkLsS -m 2 127.0.0.1:8384/rest/noauth/health | grep -o --color=never OK || exit 1"] "1m0s" "10s" "0s" "0s" '\x00'}
                        
# 2025-12-02 15:50:36  0.00B 设置环境变量 PUID PGID HOME
ENV PUID=1000 PGID=1000 HOME=/var/syncthing
                        
# 2025-12-02 15:50:36  737.00B 复制新文件或目录到容器中
COPY /src/script/docker-entrypoint.sh /bin/entrypoint.sh # buildkit
                        
# 2025-12-02 15:50:36  35.61MB 复制新文件或目录到容器中
COPY /src/syncthing-linux-amd64 /bin/syncthing # buildkit
                        
# 2025-12-02 15:49:41  6.31MB 执行命令并创建新的镜像层
RUN |1 TARGETARCH=amd64 /bin/sh -c apk add --no-cache ca-certificates curl libcap su-exec tzdata # buildkit
                        
# 2025-12-02 15:49:41  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/var/syncthing]
                        
# 2025-12-02 15:49:41  0.00B 声明容器运行时监听的端口
EXPOSE [21027/udp 22000/tcp 22000/udp 8384/tcp]
                        
# 2025-12-02 15:49:41  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
                        
# 2025-12-02 15:49:41  0.00B 定义构建参数
ARG TARGETARCH=amd64
                        
# 2025-10-08 19:04:56  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2025-10-08 19:04:56  8.32MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.22.2-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:9f644be97c8a9597cc2c3b554d8b4453cb2c814ed1c65d0611b35034dda10436",
    "RepoTags": [
        "syncthing/syncthing:latest",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing:latest"
    ],
    "RepoDigests": [
        "syncthing/syncthing@sha256:7ae77d066e9b81d3d8c312b2f9e1a874a5115680bfde90aff5fc9aece694ec93",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing@sha256:6574090633a461fcc345230e0a37757063da96c3779fe9c59d6772b27ae8e49f"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-12-02T07:50:36.973083257Z",
    "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": "ce884e5d7253ed82379f918e169438eb64fcece0",
            "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.0.12"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 50246811,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/a7b2726fe28e73ad4d96ef15356947ef5e2d1e4d6cd45008e1f0ac1f4471db88/diff:/var/lib/docker/overlay2/7cf7f05d3a1d4cfc9aba9bde19513540dc1621df85c97ea456ec158b7749c61b/diff:/var/lib/docker/overlay2/6888100608f6a5b756d19d47a26fd0f5bb4d6d32cb4d5a5a703029f9799d3c62/diff:/var/lib/docker/overlay2/9228d0dea91f2a86651259163a395152983e6f8dd01e3c64990f331280069735/diff",
            "MergedDir": "/var/lib/docker/overlay2/f112b2222934f07dcc594b95f2b368c41754af01df4805fcf25633cdfecbd060/merged",
            "UpperDir": "/var/lib/docker/overlay2/f112b2222934f07dcc594b95f2b368c41754af01df4805fcf25633cdfecbd060/diff",
            "WorkDir": "/var/lib/docker/overlay2/f112b2222934f07dcc594b95f2b368c41754af01df4805fcf25633cdfecbd060/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:256f393e029fa2063d8c93720da36a74a032bed3355a2bc3e313ad12f8bde9d1",
            "sha256:a1605f25bc3afa5784112c2f2f3d2d5e04ecbadbb3edf94f1bbe6bb81ab52f7f",
            "sha256:819b44b3a4a4b666103b691d53abb549ea142780e18717d1ecfabc88cff0f9dc",
            "sha256:e3433442d89eacb97472f6d3aa9c9aa7f9d11def5cc41ed99d195636f3742f49",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-12-09T19:36:50.332581393+08:00"
    }
}

更多版本

docker.io/syncthing/syncthing:1.27.10

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

docker.io/syncthing/syncthing:1.27

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

docker.io/syncthing/syncthing:1.28.0

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

docker.io/syncthing/syncthing:1.28.1

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

docker.io/syncthing/syncthing:1.29.3

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

docker.io/syncthing/syncthing:v2

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

docker.io/syncthing/syncthing:1.30

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

docker.io/syncthing/syncthing:2

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

docker.io/syncthing/syncthing:latest

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

docker.io/syncthing/syncthing:2.0.3

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

docker.io/syncthing/syncthing:2.0.3

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

docker.io/syncthing/syncthing:2.0.8

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

docker.io/syncthing/syncthing:2.0.8

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

docker.io/syncthing/syncthing:latest

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