ℹ️
注意:这是一个 latest 标签镜像

latest 并不代表最新版本,本站同步时间存在延迟,无法保证此镜像与上游最新版本一致
生产环境建议使用明确的版本号(如 v1.2.3),避免因版本不一致导致问题。 了解更多 →

logo
ghcr.io/joeyjoey1234/northstarptero:latest
linux/amd64 ghcr.io

该镜像用于在Pterodactyl面板中部署泰坦陨落2的Northstar mod服务器,帮助用户快速搭建和管理Northstar服务器实例。

14
浏览次数
555.57MB
镜像大小
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/joeyjoey1234/northstarptero:latest
源镜像
ghcr.io/joeyjoey1234/northstarptero:latest
镜像ID
sha256:9e9f901ee06d356e2e295bc3f9c47e41ffba06a745882788af735ed79f4088d9
镜像 TAG
latest
镜像大小
555.57MB
平台架构
linux/amd64
镜像源
ghcr.io
CMD
启动入口
/usr/libexec/nsdedi
工作目录
OS/平台
linux/amd64
镜像创建
2022-05-17T17:13:32.939744155-06:00
同步时间
2026-07-11 11:26
浏览量
14 次
贡献者
🔌 开放端口 2
37015/udp 8081/tcp
⚙️ 环境变量 2
KeyValue
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 0
WINEPREFIX=/home/container/.wine 1
🛡️ 镜像安全扫描
alpine 3.15.4 Trivy 2026-07-11 11:26 查看完整报告
0
低危 LOW
15
中危 MEDIUM
18
高危 HIGH
2
严重 CRITICAL
受影响目标 (1)
ghcr.io/joeyjoey1234/northstarptero:latest (alpine 3.15.4) alpine

Docker拉取命令

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

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/joeyjoey1234/northstarptero:latest
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/joeyjoey1234/northstarptero:latest  ghcr.io/joeyjoey1234/northstarptero:latest

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2022-05-18 07:13:32  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/usr/libexec/nsdedi"]
                        
# 2022-05-18 07:13:32  0.00B 声明容器运行时监听的端口
EXPOSE map[37015/udp:{}]
                        
# 2022-05-18 07:13:32  0.00B 声明容器运行时监听的端口
EXPOSE map[8081/tcp:{}]
                        
# 2022-05-18 07:13:32  2.16MB 执行命令并创建新的镜像层
RUN /bin/sh -c /usr/bin/nswrap-wineprefix &&     for x in         /home/container/.wine/drive_c/"Program Files"/"Common Files"/System/*/*         /home/container/.wine/drive_c/windows/*         /home/container/.wine/drive_c/windows/system32/*         /home/container/.wine/drive_c/windows/system32/drivers/*         /home/container/.wine/drive_c/windows/system32/wbem/*         /home/container/.wine/drive_c/windows/system32/spool/drivers/x64/*/*         /home/container/.wine/drive_c/windows/system32/Speech/common/*         /home/container/.wine/drive_c/windows/winsxs/*/*     ; do         orig="/usr/lib/wine/x86_64-windows/$(basename "$x")";         if cmp -s "$orig" "$x"; then ln -sf "$orig" "$x"; fi;     done &&     for x in         /home/container/.wine/drive_c/windows/globalization/sorting/*.nls         /home/container/.wine/drive_c/windows/system32/*.nls     ; do         orig="/usr/share/wine/nls/$(basename "$x")";         if cmp -s "$orig" "$x"; then ln -sf "$orig" "$x"; fi;     done # buildkit
                        
# 2022-05-18 07:13:32  0.00B 设置环境变量 WINEPREFIX
ENV WINEPREFIX=/home/container/.wine
                        
# 2022-05-18 07:13:32  0.00B 指定运行容器时使用的用户
USER container
                        
# 2022-05-18 07:13:12  4.82KB 执行命令并创建新的镜像层
RUN /bin/sh -c adduser -D container &&     echo 'container ALL=(ALL) NOPASSWD: ALL' > /etc/sudoers.d/container &&     mkdir /mnt/titanfall /mnt/mods /mnt/navs # buildkit
                        
# 2022-05-18 07:13:10  32.00B 执行命令并创建新的镜像层
RUN /bin/sh -c echo 'partial xkb_symbols "evdev" {};' > /usr/share/X11/xkb/symbols/inet # buildkit
                        
# 2022-05-18 07:13:09  2.32MB 执行命令并创建新的镜像层
RUN /bin/sh -c apk add --no-cache --allow-untrusted /nsbuild/nswrap/*.apk /nsbuild/entrypoint/*.apk # buildkit
                        
# 2022-05-18 07:13:05  319.28MB 执行命令并创建新的镜像层
RUN /bin/sh -c apk add --no-cache --allow-untrusted /nsbuild/northstar/*.apk # buildkit
                        
# 2022-05-18 07:12:56  216.98MB 执行命令并创建新的镜像层
RUN /bin/sh -c apk add --no-cache --allow-untrusted /nsbuild/wine/northstar-dedicated-wine-[0-9]*-r*.apk xvfb # buildkit
                        
# 2022-05-18 07:04:05  9.25MB 执行命令并创建新的镜像层
RUN /bin/sh -c apk add --no-cache gnutls tzdata ca-certificates sudo # buildkit
                        
# 2022-04-05 08:19:59  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/sh"]
                        
# 2022-04-05 08:19:59  5.57MB 
/bin/sh -c #(nop) ADD file:5d673d25da3a14ce1f6cf66e4c7fd4f4b85a3759a9d93efb3fd9ff852b5b56e4 in / 
                        
                    

镜像信息

{
    "Id": "sha256:9e9f901ee06d356e2e295bc3f9c47e41ffba06a745882788af735ed79f4088d9",
    "RepoTags": [
        "ghcr.io/joeyjoey1234/northstarptero:latest",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/joeyjoey1234/northstarptero:latest"
    ],
    "RepoDigests": [
        "ghcr.io/joeyjoey1234/northstarptero@sha256:3814a2f23412f5542ce0c1612a0fdf7173fc270694254e18b09ba76453c7ca2d",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/joeyjoey1234/northstarptero@sha256:3814a2f23412f5542ce0c1612a0fdf7173fc270694254e18b09ba76453c7ca2d"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2022-05-17T17:13:32.939744155-06:00",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "container",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "37015/udp": {},
            "8081/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "WINEPREFIX=/home/container/.wine"
        ],
        "Cmd": null,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "",
        "Entrypoint": [
            "/usr/libexec/nsdedi"
        ],
        "OnBuild": null,
        "Labels": null
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 555566216,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/03bf01772a9f6b16edfa4d282749b86b8ac15f1b986fc46fcfc9e841ba1a8c26/diff:/var/lib/docker/overlay2/11dc40772d61c464e01e77b0ef6b196c12c9513f09c9ca07b9dd2e0b91acfa9f/diff:/var/lib/docker/overlay2/b4f5872f3ec90ca037c9315bcbdc42c6025040303f18dfe0ab3513b93f156bbf/diff:/var/lib/docker/overlay2/5a6ca16a97984a424f946ce7a88ec0abc66e0ff72812948d7c07851d741bc97e/diff:/var/lib/docker/overlay2/6d055581aa9af8bc57c4744dea125b7a0a6715bead6b1315362a6d2c187d4837/diff:/var/lib/docker/overlay2/fa96986b64281e5ea73dc0a8c5f7faca3bb5acc96d5ec741949fa895a65e5e49/diff:/var/lib/docker/overlay2/2a02ac6d52905a6d43299589d3209fe7c53c032aaee879d5e641f9096e1fb162/diff",
            "MergedDir": "/var/lib/docker/overlay2/9bc8f14c6a2c1a99cd1efa99930ac1acd0d1b76aa5c10742ff0dac991663ce39/merged",
            "UpperDir": "/var/lib/docker/overlay2/9bc8f14c6a2c1a99cd1efa99930ac1acd0d1b76aa5c10742ff0dac991663ce39/diff",
            "WorkDir": "/var/lib/docker/overlay2/9bc8f14c6a2c1a99cd1efa99930ac1acd0d1b76aa5c10742ff0dac991663ce39/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:4fc242d58285699eca05db3cc7c7122a2b8e014d9481f323bd9277baacfa0628",
            "sha256:d90b2a248b314616557407a07e7c95418680766e452c98a2bf1ab69e57741152",
            "sha256:b463be7f61a33ea55e1dbb9ec44dace1d23ac99b2d720dfdacb244c85ee430f1",
            "sha256:26d213ee29aeaac23552f00be27486058bf7582410ac6751a708dc0d81530693",
            "sha256:4f4655001eabb77ae2ca9cc83618d031ad034884852a5167cf5498f1cf770d68",
            "sha256:ff92eeb71010436b69bc19b3306b35de03ce93a3c8b961644c78729851e3f440",
            "sha256:6e72c2f952cd742b0a64df06b17610dd68f2c2c0b7a4f513f214202d3d43ef31",
            "sha256:e22a0acd9a44668c65afeaa65e12eb7cea4e59dfd7bca7a4b2ac696414f6e796"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-07-11T11:26:08.99388755+08:00"
    }
}

更多版本

ghcr.io/joeyjoey1234/northstarptero:latest

linux/amd64 ghcr.io555.57MB2026-07-11 11:26
13
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×