docker.io/dperson/samba:latest linux/arm64

docker.io/dperson/samba:latest - 国内下载镜像源 浏览次数:19

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

温馨提示: 这是一个 linux/arm64 系统架构镜像

这是一个基于 Samba 服务器的 Docker 镜像,由用户 dperson 创建并发布到 Docker Hub。

源镜像 docker.io/dperson/samba:latest
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/dperson/samba:latest-linuxarm64
镜像ID sha256:216f21e9a995109fb6befd2eb7ec811d7ad7b98a030e74dfa4bb1c8dbc2bc103
镜像TAG latest-linuxarm64
大小 58.13MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD
启动入口 /sbin/tini -- /usr/bin/samba.sh
工作目录
OS/平台 linux/arm64
浏览量 19 次
贡献者 15********8@163.com
镜像创建 2021-03-31T17:47:48.370104889Z
同步时间 2025-07-30 23:56
更新时间 2025-08-02 20:55
开放端口
137/udp 138/udp 139/tcp 445/tcp
目录挂载
/etc /run/samba /var/cache/samba /var/lib/samba /var/log/samba
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2021-04-01 01:47:48  0.00B 
/bin/sh -c #(nop)  ENTRYPOINT ["/sbin/tini" "--" "/usr/bin/samba.sh"]
                        
# 2021-04-01 01:47:48  0.00B 
/bin/sh -c #(nop)  VOLUME [/etc /var/cache/samba /var/lib/samba /var/log/samba /run/samba]
                        
# 2021-04-01 01:47:47  0.00B 
/bin/sh -c #(nop)  HEALTHCHECK &{["CMD-SHELL" "smbclient -L \\\\localhost -U % -m SMB3"] "1m0s" "15s" "0s" '\x00'}
                        
# 2021-04-01 01:47:47  0.00B 
/bin/sh -c #(nop)  EXPOSE 137/udp 138/udp 139 445
                        
# 2021-04-01 01:47:47  10.86KB 
/bin/sh -c #(nop) COPY file:0753c1de004fff05ef0ea8d2deae88ffe5751fe681f0e8975d5de0136bc61cde in /usr/bin/ 
                        
# 2021-04-01 01:47:46  42.94MB 
/bin/sh -c apk --no-cache --no-progress upgrade &&     apk --no-cache --no-progress add bash samba shadow tini tzdata &&     addgroup -S smb &&     adduser -S -D -H -h /tmp -s /sbin/nologin -G smb -g 'Samba User' smbuser &&    file="/etc/samba/smb.conf" &&     sed -i 's|^;* *\(log file = \).*|   \1/dev/stdout|' $file &&     sed -i 's|^;* *\(load printers = \).*|   \1no|' $file &&     sed -i 's|^;* *\(printcap name = \).*|   \1/dev/null|' $file &&     sed -i 's|^;* *\(printing = \).*|   \1bsd|' $file &&     sed -i 's|^;* *\(unix password sync = \).*|   \1no|' $file &&     sed -i 's|^;* *\(preserve case = \).*|   \1yes|' $file &&     sed -i 's|^;* *\(short preserve case = \).*|   \1yes|' $file &&     sed -i 's|^;* *\(default case = \).*|   \1lower|' $file &&     sed -i '/Share Definitions/,$d' $file &&     echo '   pam password change = yes' >>$file &&     echo '   map to guest = bad user' >>$file &&     echo '   usershare allow guests = yes' >>$file &&     echo '   create mask = 0664' >>$file &&     echo '   force create mode = 0664' >>$file &&     echo '   directory mask = 0775' >>$file &&     echo '   force directory mode = 0775' >>$file &&     echo '   force user = smbuser' >>$file &&     echo '   force group = smb' >>$file &&     echo '   follow symlinks = yes' >>$file &&     echo '   load printers = no' >>$file &&     echo '   printing = bsd' >>$file &&     echo '   printcap name = /dev/null' >>$file &&     echo '   disable spoolss = yes' >>$file &&     echo '   strict locking = no' >>$file &&     echo '   aio read size = 0' >>$file &&     echo '   aio write size = 0' >>$file &&     echo '   vfs objects = catia fruit recycle streams_xattr' >>$file &&     echo '   recycle:keeptree = yes' >>$file &&     echo '   recycle:maxsize = 0' >>$file &&     echo '   recycle:repository = .deleted' >>$file &&     echo '   recycle:versions = yes' >>$file &&     echo '' >>$file &&     echo '   # Security' >>$file &&     echo '   client ipc max protocol = SMB3' >>$file &&     echo '   client ipc min protocol = SMB2_10' >>$file &&     echo '   client max protocol = SMB3' >>$file &&     echo '   client min protocol = SMB2_10' >>$file &&     echo '   server max protocol = SMB3' >>$file &&     echo '   server min protocol = SMB2_10' >>$file &&     echo '' >>$file &&     echo '   # Time Machine' >>$file &&     echo '   fruit:delete_empty_adfiles = yes' >>$file &&     echo '   fruit:time machine = yes' >>$file &&     echo '   fruit:veto_appledouble = no' >>$file &&     echo '   fruit:wipe_intentionally_left_blank_rfork = yes' >>$file &&     echo '' >>$file &&     rm -rf /tmp/*
                        
# 2021-04-01 01:47:34  0.00B 
/bin/sh -c #(nop)  MAINTAINER David Personette <dperson@gmail.com>
                        
# 2021-04-01 01:47:34  9.83MB 
/bin/sh -c #(nop) COPY file:6fb5d6c99c0377603be5afd3fbcd6f49d4c2fa1ca608366e0dc4597c5aee25c5 in /usr/bin/ 
                        
# 2021-04-01 01:21:23  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/sh"]
                        
# 2021-04-01 01:21:21  5.35MB 
/bin/sh -c #(nop) ADD file:3b16ffee2b26d8af5db152fcc582aaccd9e1ec9e3343874e9969a205550fe07d in / 
                        
                    

镜像信息

{
    "Id": "sha256:216f21e9a995109fb6befd2eb7ec811d7ad7b98a030e74dfa4bb1c8dbc2bc103",
    "RepoTags": [
        "dperson/samba:latest",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/dperson/samba:latest-linuxarm64"
    ],
    "RepoDigests": [
        "dperson/samba@sha256:66088b78a19810dd1457a8f39340e95e663c728083efa5fe7dc0d40b2478e869",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/dperson/samba@sha256:4cb487986c024c4b42c7900b03ee5cc051d66ba57ec687c9f393e64a54cac3e3"
    ],
    "Parent": "",
    "Comment": "",
    "Created": "2021-03-31T17:47:48.370104889Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "19.03.8",
    "Author": "David Personette \u003cdperson@gmail.com\u003e",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "137/udp": {},
            "138/udp": {},
            "139/tcp": {},
            "445/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
        ],
        "Cmd": null,
        "Healthcheck": {
            "Test": [
                "CMD-SHELL",
                "smbclient -L \\\\localhost -U % -m SMB3"
            ],
            "Interval": 60000000000,
            "Timeout": 15000000000
        },
        "Image": "sha256:91be0f0eba5ecfb6fc08c2262ddcf9dbba4bb0aa6bfaabf2aefa202fd888cb0b",
        "Volumes": {
            "/etc": {},
            "/run/samba": {},
            "/var/cache/samba": {},
            "/var/lib/samba": {},
            "/var/log/samba": {}
        },
        "WorkingDir": "",
        "Entrypoint": [
            "/sbin/tini",
            "--",
            "/usr/bin/samba.sh"
        ],
        "OnBuild": null,
        "Labels": null
    },
    "Architecture": "arm64",
    "Os": "linux",
    "Size": 58134067,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/86683041b7f974cbadf60aed4da120fe5d8dc83c00dffdcaca68bedcfafaaa67/diff:/var/lib/docker/overlay2/b1fb98c48e069b74cb7822294aba67312c86b87912aa336f7b1eb4bc808167f8/diff:/var/lib/docker/overlay2/88f134c3e91a45d46a9573e5914f5ef8a4d660cce9f0599fa7253e5b33f7ab1d/diff",
            "MergedDir": "/var/lib/docker/overlay2/b25b5fa6d1938b2b52dcb42eba9ef4482bafa2ecc63259e58856a9a01e62efdc/merged",
            "UpperDir": "/var/lib/docker/overlay2/b25b5fa6d1938b2b52dcb42eba9ef4482bafa2ecc63259e58856a9a01e62efdc/diff",
            "WorkDir": "/var/lib/docker/overlay2/b25b5fa6d1938b2b52dcb42eba9ef4482bafa2ecc63259e58856a9a01e62efdc/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:56bf55b8eed1f0b4794a30386e4d1d3da949c25bcb5155e898097cd75dc77c2a",
            "sha256:ed41c56b1ed28cb27bb6d577507197f3fba8e41a42cdc67d6fee621d8bfd6191",
            "sha256:cd2ae2aa542e9c9e902f6f7a1791565354275e397657c463a51ac6a826a09cc5",
            "sha256:5cbbd64b80bc8bd4deb418f3d97c4262c8cfbeb3c2780d4752e407bd8e21be6c"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-07-30T23:56:23.311168501+08:00"
    }
}

更多版本

docker.io/dperson/samba:latest

linux/amd64 docker.io52.07MB2025-06-14 23:57
186

docker.io/dperson/samba:latest

linux/arm64 docker.io58.13MB2025-07-30 23:56
18