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

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

Syncthing

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

源镜像 docker.io/syncthing/syncthing:1.30
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing:1.30
镜像ID sha256:2071c59bec50f3c6d332a4a4c43acde928c655bc45d857bc926ff5b9cd045903
镜像TAG 1.30
大小 41.09MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD
启动入口 /bin/entrypoint.sh /bin/syncthing
工作目录 /
OS/平台 linux/amd64
浏览量 11 次
贡献者
镜像创建 2025-07-01T11:16:28.014444077Z
同步时间 2025-07-20 19:30
更新时间 2025-07-21 03:33
开放端口
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 0945304a79d6bbaeac7fc2cc1b06f57d3cf66622: 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 1.30.0: org.opencontainers.image.version

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


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

镜像信息

{
    "Id": "sha256:2071c59bec50f3c6d332a4a4c43acde928c655bc45d857bc926ff5b9cd045903",
    "RepoTags": [
        "syncthing/syncthing:1.30",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing:1.30"
    ],
    "RepoDigests": [
        "syncthing/syncthing@sha256:74eeedb08d4912763055594f8bd98bfc039f3bc504b6cd2c2adc8294111c1251",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/syncthing/syncthing@sha256:ad1fc74bbeb5892c3a397df3d785d4c4279a1a44010674136d9ac3ec5882191d"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-07-01T11:16:28.014444077Z",
    "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": "0945304a79d6bbaeac7fc2cc1b06f57d3cf66622",
            "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": "1.30.0"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 41094574,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/a4769cc36ad695dc7a642d7be671be1b0061d5679c99fb76960c3830287bee9c/diff:/var/lib/docker/overlay2/985d07b4c5578db9a3e0b72a372d1658a12922227f1e12206fded7db04ea86ed/diff:/var/lib/docker/overlay2/8e4185e7f88b17af9d8901f92c489c0c50d68409fd2fa70432cb5d9d0533fa93/diff:/var/lib/docker/overlay2/612cc8e7287e174f0c2d5977a0ca343b7cc0bd246756da806897f7ce1d920402/diff",
            "MergedDir": "/var/lib/docker/overlay2/17f6f1a4edfcfe92d6ee63d32381bfe21fcdcb2abed79ed5d4d502decfa89d99/merged",
            "UpperDir": "/var/lib/docker/overlay2/17f6f1a4edfcfe92d6ee63d32381bfe21fcdcb2abed79ed5d4d502decfa89d99/diff",
            "WorkDir": "/var/lib/docker/overlay2/17f6f1a4edfcfe92d6ee63d32381bfe21fcdcb2abed79ed5d4d502decfa89d99/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:fd2758d7a50e2b78d275ee7d1c218489f2439084449d895fa17eede6c61ab2c4",
            "sha256:b2e5e3ad2f8e37e644e550e3e06380f2be1e501329d060e243e90630f665f1cf",
            "sha256:d4c9fa54f1adb1b5c4097459f76d75b46b5de9bf1763aa1cb49a8db085c8f969",
            "sha256:31a507fa6cf0d5f08dabebbec91667cf7eb238350663371a5c917bb2071d77de",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-07-20T19:30:02.178400918+08:00"
    }
}

更多版本

docker.io/syncthing/syncthing:1.27.10

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

docker.io/syncthing/syncthing:1.27

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

docker.io/syncthing/syncthing:1.28.0

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

docker.io/syncthing/syncthing:1.28.1

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

docker.io/syncthing/syncthing:1.29.3

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

docker.io/syncthing/syncthing:v2

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

docker.io/syncthing/syncthing:1.30

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