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

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

Syncthing

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

源镜像 docker.io/syncthing/syncthing:2.0.3
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing:2.0.3
镜像ID sha256:28ed3a82cb94cbc6910746fe202b4f302f22b751746bbb1712febd8646008bfb
镜像TAG 2.0.3
大小 49.93MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD
启动入口 /bin/entrypoint.sh /bin/syncthing
工作目录 /
OS/平台 linux/amd64
浏览量 15 次
贡献者
镜像创建 2025-08-22T08:03:46.233291581Z
同步时间 2025-09-02 02:36
更新时间 2025-09-02 14:34
开放端口
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 8151bcddff7aa837de3c9f19c506e01d1370a138: 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.3: org.opencontainers.image.version

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

sed -i 's#syncthing/syncthing:2.0.3#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing:2.0.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.0.3 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing:2.0.3  docker.io/syncthing/syncthing:2.0.3'

Ansible快速分发-Containerd

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

镜像构建历史


# 2025-08-22 16:03:46  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/bin/entrypoint.sh" "/bin/syncthing"]
                        
# 2025-08-22 16:03:46  0.00B 执行命令并创建新的镜像层
RUN |1 TARGETARCH=amd64 /bin/sh -c chmod 755 /bin/entrypoint.sh # buildkit
                        
# 2025-08-22 16:03:46  0.00B 设置环境变量 STHOMEDIR
ENV STHOMEDIR=/var/syncthing/config
                        
# 2025-08-22 16:03:46  0.00B 设置环境变量 STGUIADDRESS
ENV STGUIADDRESS=0.0.0.0:8384
                        
# 2025-08-22 16:03:46  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-08-22 16:03:46  0.00B 设置环境变量 PUID PGID HOME
ENV PUID=1000 PGID=1000 HOME=/var/syncthing
                        
# 2025-08-22 16:03:46  737.00B 复制新文件或目录到容器中
COPY /src/script/docker-entrypoint.sh /bin/entrypoint.sh # buildkit
                        
# 2025-08-22 16:03:46  35.32MB 复制新文件或目录到容器中
COPY /src/syncthing-linux-amd64 /bin/syncthing # buildkit
                        
# 2025-08-22 16:03:27  6.30MB 执行命令并创建新的镜像层
RUN |1 TARGETARCH=amd64 /bin/sh -c apk add --no-cache ca-certificates curl libcap su-exec tzdata # buildkit
                        
# 2025-08-22 16:03:27  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/var/syncthing]
                        
# 2025-08-22 16:03:27  0.00B 声明容器运行时监听的端口
EXPOSE map[21027/udp:{} 22000/tcp:{} 22000/udp:{} 8384/tcp:{}]
                        
# 2025-08-22 16:03:27  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-08-22 16:03:27  0.00B 定义构建参数
ARG TARGETARCH=amd64
                        
# 2025-07-15 19:01:16  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2025-07-15 19:01:16  8.31MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.22.1-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:28ed3a82cb94cbc6910746fe202b4f302f22b751746bbb1712febd8646008bfb",
    "RepoTags": [
        "syncthing/syncthing:2.0.3",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing:2.0.3"
    ],
    "RepoDigests": [
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing@sha256:1026d9a71e11e7413d964f083279a544e1dbab2ec2805bbf3b36db71ff95e586"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-08-22T08:03:46.233291581Z",
    "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": "8151bcddff7aa837de3c9f19c506e01d1370a138",
            "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.3"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 49934202,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/30a28bdb127cfccdf09a0285a184df25ede3f1b798675e2004f9cb639bd4ffd3/diff:/var/lib/docker/overlay2/2dc2e5bcf7c6d37d0f72ba87b1065bc526243dbc19f841e26a425c70f4db89e7/diff:/var/lib/docker/overlay2/12ca9f03a521306104df5ed15436dc6518ca3f7b1e29921a604e510f017d8e0d/diff:/var/lib/docker/overlay2/fce31083bf78fb669ced5e473ada166388fb6191ae6144c91b94c9a1629510cc/diff",
            "MergedDir": "/var/lib/docker/overlay2/2beee1d6568e23dadedf14b1c91d84b0e05205d50ba339c62f409f858f908f55/merged",
            "UpperDir": "/var/lib/docker/overlay2/2beee1d6568e23dadedf14b1c91d84b0e05205d50ba339c62f409f858f908f55/diff",
            "WorkDir": "/var/lib/docker/overlay2/2beee1d6568e23dadedf14b1c91d84b0e05205d50ba339c62f409f858f908f55/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:418dccb7d85a63a6aa574439840f7a6fa6fd2321b3e2394568a317735e867d35",
            "sha256:20c4c13ae2189d9343eb6794c842fa5fc45d64cca9cdb022b18d943b61b2998b",
            "sha256:c18604a58b8af8271d8b4b88e19e869641be98f28ca77a0ea486c1937eec128f",
            "sha256:943c0abe92ede0cfe4da030c616ca60d98c60f8b35633c1864fba23329aa93e0",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-09-02T02:36:10.071539953+08:00"
    }
}

更多版本

docker.io/syncthing/syncthing:1.27.10

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

docker.io/syncthing/syncthing:1.27

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

docker.io/syncthing/syncthing:1.28.0

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

docker.io/syncthing/syncthing:1.28.1

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

docker.io/syncthing/syncthing:1.29.3

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

docker.io/syncthing/syncthing:v2

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

docker.io/syncthing/syncthing:1.30

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

docker.io/syncthing/syncthing:2

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

docker.io/syncthing/syncthing:latest

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

docker.io/syncthing/syncthing:2.0.3

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

docker.io/syncthing/syncthing:2.0.3

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