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

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

logo
ghcr.io/music-assistant/server:latest
linux/arm64 ghcr.io 请确认架构匹配

这是一个 Music Assistant 服务器的 Docker 镜像。

12
浏览次数
2.25GB
镜像大小
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/music-assistant/server:latest-linuxarm64
源镜像
ghcr.io/music-assistant/server:latest
镜像ID
sha256:022d6f143d805f2105b9280197e0bddd4869c88f2508dcd7e82234844c0217ed
镜像 TAG
latest-linuxarm64
镜像大小
2.25GB
平台架构
linux/arm64
镜像源
ghcr.io
CMD
启动入口
/usr/local/bin/entrypoint.sh --data-dir /data --cache-dir /data/.cache
工作目录
/app/venv
OS/平台
linux/arm64
镜像创建
2026-08-12T13:36:18.347077454Z
同步时间
2026-08-26 14:39
浏览量
12 次
贡献者
🔌 开放端口 1
8095/tcp
📁 目录挂载 1
 /data
⚙️ 环境变量 4
KeyValue
PATH=/app/venv/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 0
PYTHON_VERSION=3.14.6 1
PYTHON_SHA256=143b1dddefaec3bd2e21e3b839b34a2b7fb9842272883c576420d605e9f30c63 2
VIRTUAL_ENV=/app/venv 3
🏷️ 镜像标签 11
KeyValue
Music Assistant Server io.hass.description
Music Assistant Server io.hass.name
linux/arm64 io.hass.platform
addon io.hass.type
2.9.13 io.hass.version
The Music Assistant Team org.opencontainers.image.authors
Music Assistant is a free, opensource Media library manager that connects to your streaming services and a wide range of connected speakers. The server is the beating heart, the core of Music Assistant and must run on an always-on device like a Raspberry Pi, a NAS or an Intel NUC or alike. org.opencontainers.image.description
https://music-assistant.io org.opencontainers.image.documentation
Apache License 2.0 org.opencontainers.image.licenses
https://github.com/music-assistant/server org.opencontainers.image.source
Music Assistant Server org.opencontainers.image.title
🛡️ 镜像安全扫描
debian 12.14 Trivy 2026-08-26 14:39 查看完整报告
239
低危 LOW
460
中危 MEDIUM
361
高危 HIGH
12
严重 CRITICAL
受影响目标 (10)
ghcr.io/music-assistant/server:latest (debian 12.14) debian Python python-pkg app/venv/bin/uv rustbinary app/venv/bin/uvx rustbinary app/venv/lib/python3.14/site-packages/music_assistant/providers/ariacast_receiver/bin/ariacast_darwin_amd64 gobinary app/venv/lib/python3.14/site-packages/music_assistant/providers/ariacast_receiver/bin/ariacast_darwin_arm64 gobinary app/venv/lib/python3.14/site-packages/music_assistant/providers/ariacast_receiver/bin/ariacast_linux_amd64 gobinary app/venv/lib/python3.14/site-packages/music_assistant/providers/ariacast_receiver/bin/ariacast_linux_arm64 gobinary usr/local/bin/go-librespot gobinary /usr/local/bin/widevine_cdm/private_key.pem

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/music-assistant/server:latest-linuxarm64
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/music-assistant/server:latest-linuxarm64  ghcr.io/music-assistant/server:latest

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/music-assistant/server:latest-linuxarm64
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/music-assistant/server:latest-linuxarm64  ghcr.io/music-assistant/server:latest

Shell快速替换命令

sed -i 's#ghcr.io/music-assistant/server:latest#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/music-assistant/server:latest-linuxarm64#' deployment.yaml

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2026-08-12 21:36:18  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/usr/local/bin/entrypoint.sh" "--data-dir" "/data" "--cache-dir" "/data/.cache"]
                        
# 2026-08-12 21:36:18  208.00B 执行命令并创建新的镜像层
RUN |2 MASS_VERSION=2.9.13 TARGETPLATFORM=linux/arm64 /bin/sh -c printf '#!/bin/sh\nfor path in /usr/lib/*/libjemalloc.so.2; do\n    [ -f "$path" ] && export LD_PRELOAD="$path" MALLOC_CONF="background_thread:true,dirty_decay_ms:5000,muzzy_decay_ms:5000" && break\ndone\nexec mass "$@"\n' > /usr/local/bin/entrypoint.sh && chmod +x /usr/local/bin/entrypoint.sh # buildkit
                        
# 2026-08-12 21:36:18  0.00B 设置工作目录为/app/venv
WORKDIR /app/venv
                        
# 2026-08-12 21:36:18  0.00B 声明容器运行时监听的端口
EXPOSE [8095/tcp]
                        
# 2026-08-12 21:36:18  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/data]
                        
# 2026-08-12 21:36:18  0.00B 添加元数据标签
LABEL org.opencontainers.image.title=Music Assistant Server org.opencontainers.image.description=Music Assistant is a free, opensource Media library manager that connects to your streaming services and a wide range of connected speakers. The server is the beating heart, the core of Music Assistant and must run on an always-on device like a Raspberry Pi, a NAS or an Intel NUC or alike. org.opencontainers.image.source=https://github.com/music-assistant/server org.opencontainers.image.authors=The Music Assistant Team org.opencontainers.image.documentation=https://music-assistant.io org.opencontainers.image.licenses=Apache License 2.0 io.hass.version=2.9.13 io.hass.type=addon io.hass.name=Music Assistant Server io.hass.description=Music Assistant Server io.hass.platform=linux/arm64 io.hass.type=addon
                        
# 2026-08-12 21:36:18  0.00B 定义构建参数
ARG TARGETPLATFORM=linux/arm64
                        
# 2026-08-12 21:36:18  0.00B 定义构建参数
ARG MASS_VERSION=2.9.13
                        
# 2026-08-12 21:36:18  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c chmod 777 /app # buildkit
                        
# 2026-08-12 21:36:17  1.72GB 复制新文件或目录到容器中
COPY /app /app # buildkit
                        
# 2026-08-12 21:36:17  0.00B 设置环境变量 PATH
ENV PATH=/app/venv/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2026-08-12 21:36:17  0.00B 设置环境变量 VIRTUAL_ENV
ENV VIRTUAL_ENV=/app/venv
                        
# 2026-06-22 06:54:50  0.00B 添加元数据标签
LABEL org.opencontainers.image.title=Music Assistant Base Image org.opencontainers.image.description=Base Image for Music Assistant server - not to be used directly org.opencontainers.image.source=https://github.com/music-assistant/server org.opencontainers.image.authors=The Music Assistant Team org.opencontainers.image.licenses=Apache License 2.0
                        
# 2026-06-22 06:54:50  0.00B 执行命令并创建新的镜像层
RUN |3 SNAPCAST_VERSION=0.34.0 TARGETARCH=arm64 GO_LIBRESPOT_VERSION=0.7.4 /bin/sh -c chmod -R 777 /tmp # buildkit
                        
# 2026-06-22 06:54:50  3.46KB 复制新文件或目录到容器中
COPY widevine_cdm/* /usr/local/bin/widevine_cdm/ # buildkit
                        
# 2026-06-22 06:54:50  0.00B 执行命令并创建新的镜像层
RUN |3 SNAPCAST_VERSION=0.34.0 TARGETARCH=arm64 GO_LIBRESPOT_VERSION=0.7.4 /bin/sh -c mkdir -p /usr/local/bin/widevine_cdm # buildkit
                        
# 2026-06-22 06:54:50  38.79KB 执行命令并创建新的镜像层
RUN |3 SNAPCAST_VERSION=0.34.0 TARGETARCH=arm64 GO_LIBRESPOT_VERSION=0.7.4 /bin/sh -c ldconfig && ffmpeg -version && ffprobe -version # buildkit
                        
# 2026-06-22 06:54:50  8.77MB 复制新文件或目录到容器中
COPY /wheels/ /usr/local/share/pyav-wheels/ # buildkit
                        
# 2026-06-22 06:33:29  203.09KB 复制新文件或目录到容器中
COPY /usr/local/lib/libpostproc.so* /usr/local/lib/ # buildkit
                        
# 2026-06-22 06:33:29  1.78MB 复制新文件或目录到容器中
COPY /usr/local/lib/libsw*.so* /usr/local/lib/ # buildkit
                        
# 2026-06-22 06:33:29  60.45MB 复制新文件或目录到容器中
COPY /usr/local/lib/libav*.so* /usr/local/lib/ # buildkit
                        
# 2026-06-22 06:33:29  208.30KB 复制新文件或目录到容器中
COPY /usr/local/bin/ffprobe /usr/local/bin/ # buildkit
                        
# 2026-06-22 06:33:29  333.31KB 复制新文件或目录到容器中
COPY /usr/local/bin/ffmpeg /usr/local/bin/ # buildkit
                        
# 2026-06-22 05:10:56  16.38MB 执行命令并创建新的镜像层
RUN |3 SNAPCAST_VERSION=0.34.0 TARGETARCH=arm64 GO_LIBRESPOT_VERSION=0.7.4 /bin/sh -c set -x     && if [ "$TARGETARCH" = "arm64" ]; then         GO_LIBRESPOT_ARCH="arm64";         GO_LIBRESPOT_SHA256="62b6c7ebee6abb1f59fa3cf20a9374dd5e8c5c1ca5dab329dd312f66b59faa8d";     else         GO_LIBRESPOT_ARCH="x86_64";         GO_LIBRESPOT_SHA256="ee521eed02100ee4aa9919a147304aed5afc908c5a0c99f515c3da0aed89acf7";     fi     && wget -q "https://github.com/devgianlu/go-librespot/releases/download/v${GO_LIBRESPOT_VERSION}/go-librespot_linux_${GO_LIBRESPOT_ARCH}.tar.gz" -O /tmp/go-librespot.tar.gz     && echo "${GO_LIBRESPOT_SHA256}  /tmp/go-librespot.tar.gz" | sha256sum -c -     && tar -xzf /tmp/go-librespot.tar.gz -C /usr/local/bin go-librespot     && chmod +x /usr/local/bin/go-librespot     && rm /tmp/go-librespot.tar.gz # buildkit
                        
# 2026-06-22 05:10:53  0.00B 定义构建参数
ARG GO_LIBRESPOT_VERSION=0.7.4
                        
# 2026-06-22 05:10:53  8.29MB 执行命令并创建新的镜像层
RUN |2 SNAPCAST_VERSION=0.34.0 TARGETARCH=arm64 /bin/sh -c set -x     && if [ "$TARGETARCH" = "arm64" ]; then         SNAPCAST_ARCH="arm64";     else         SNAPCAST_ARCH="amd64";     fi     && wget -q "https://github.com/badaix/snapcast/releases/download/v${SNAPCAST_VERSION}/snapserver_${SNAPCAST_VERSION}-1_${SNAPCAST_ARCH}_bookworm.deb" -O /tmp/snapserver.deb     && wget -q "https://github.com/badaix/snapcast/releases/download/v${SNAPCAST_VERSION}/snapclient_${SNAPCAST_VERSION}-1_${SNAPCAST_ARCH}_bookworm.deb" -O /tmp/snapclient.deb     && dpkg -i /tmp/snapserver.deb /tmp/snapclient.deb     && rm /tmp/snapserver.deb /tmp/snapclient.deb # buildkit
                        
# 2026-06-22 05:10:53  0.00B 定义构建参数
ARG TARGETARCH=arm64
                        
# 2026-06-22 05:10:53  0.00B 定义构建参数
ARG SNAPCAST_VERSION=0.34.0
                        
# 2026-06-22 05:10:35  286.56MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -x     && apt-get update     && apt-get install -y --no-install-recommends         ca-certificates         libjemalloc2         tzdata         wget         cifs-utils         libnfs13         nfs-common         openssl         libssl-dev         libuuid1         libcurl4         libsodium23         libconfuse2         libunistring2         libxml2         libevent-dev         libjson-c5         libplist3         libgcrypt20         libavfilter8         libsndfile1         libchromaprint1         libfdk-aac2         libmp3lame0         libopus0         libvorbis0a         libvorbisenc2         libsoxr0         libspeex1         libtwolame0         libshine3         libopencore-amrnb0         libopencore-amrwb0         libvo-amrwbenc0         librubberband2         libbs2b0         libsamplerate0         libmysofa1         libjack-jackd2-0         libpulse0         libbluray2         libxml2         libssh-4         liblzma5         libasound2         libportaudio2         pipewire-alsa         pulseaudio-utils         libvorbisidec1         libflac12         libavahi-client3         libavahi-common3         libconfig9         libpopt0     && apt-get clean     && rm -rf /var/lib/apt/lists/*     && rm -f         /usr/bin/parecord         /usr/bin/paplay         /usr/bin/parec         /usr/bin/pamon         /usr/bin/pacat         /usr/bin/pasuspender         /usr/bin/pacmd # buildkit
                        
# 2026-06-22 05:04:38  272.00B 执行命令并创建新的镜像层
RUN /bin/sh -c echo "deb http://deb.debian.org/debian bookworm main contrib non-free non-free-firmware" > /etc/apt/sources.list &&     echo "deb http://deb.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware" >> /etc/apt/sources.list &&     echo "deb http://deb.debian.org/debian bookworm-updates main contrib non-free non-free-firmware" >> /etc/apt/sources.list # buildkit
                        
# 2026-06-11 09:15:41  0.00B 设置默认要执行的命令
CMD ["python3"]
                        
# 2026-06-11 09:15:41  36.00B 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	for src in idle3 pip3 pydoc3 python3 python3-config; do 		dst="$(echo "$src" | tr -d 3)"; 		[ -s "/usr/local/bin/$src" ]; 		[ ! -e "/usr/local/bin/$dst" ]; 		ln -svT "$src" "/usr/local/bin/$dst"; 	done # buildkit
                        
# 2026-06-11 09:15:41  41.09MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 		savedAptMark="$(apt-mark showmanual)"; 	apt-get update; 	apt-get install -y --no-install-recommends 		dpkg-dev 		gcc 		gnupg 		libbluetooth-dev 		libbz2-dev 		libc6-dev 		libdb-dev 		libffi-dev 		libgdbm-dev 		liblzma-dev 		libncursesw5-dev 		libreadline-dev 		libsqlite3-dev 		libssl-dev 		libzstd-dev 		make 		tk-dev 		uuid-dev 		wget 		xz-utils 		zlib1g-dev 	; 		wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz"; 	echo "$PYTHON_SHA256 *python.tar.xz" | sha256sum -c -; 	mkdir -p /usr/src/python; 	tar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; 	rm python.tar.xz; 		cd /usr/src/python; 	gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; 	./configure 		--build="$gnuArch" 		--enable-loadable-sqlite-extensions 		--enable-optimizations 		--enable-option-checking=fatal 		--enable-shared 		$(test "${gnuArch%%-*}" != 'riscv64' && echo '--with-lto') 		--with-ensurepip 	; 	nproc="$(nproc)"; 	EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; 	LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; 	LDFLAGS="${LDFLAGS:-} -Wl,--strip-all"; 	arch="$(dpkg --print-architecture)"; arch="${arch##*-}"; 	case "$arch" in 		amd64|arm64) 			EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer"; 			;; 		i386) 			;; 		*) 			EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer"; 			;; 	esac; 	make -j "$nproc" 		"EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" 		"LDFLAGS=${LDFLAGS:-}" 	; 	rm python; 	make -j "$nproc" 		"EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" 		"LDFLAGS=${LDFLAGS:-} -Wl,-rpath='\$\$ORIGIN/../lib'" 		python 	; 	make install; 		cd /; 	rm -rf /usr/src/python; 		find /usr/local -depth 		\( 			\( -type d -a \( -name test -o -name tests -o -name idle_test \) \) 			-o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name 'libpython*.a' \) \) 		\) -exec rm -rf '{}' + 	; 		ldconfig; 		apt-mark auto '.*' > /dev/null; 	apt-mark manual $savedAptMark; 	find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec ldd '{}' ';' 		| awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' 		| sort -u 		| xargs -rt dpkg-query --search 		| awk 'sub(":$", "", $1) { print $1 }' 		| sort -u 		| xargs -r apt-mark manual 	; 	apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; 	rm -rf /var/lib/apt/lists/*; 		export PYTHONDONTWRITEBYTECODE=1; 	python3 --version; 	pip3 --version # buildkit
                        
# 2026-06-11 09:01:16  0.00B 设置环境变量 PYTHON_SHA256
ENV PYTHON_SHA256=143b1dddefaec3bd2e21e3b839b34a2b7fb9842272883c576420d605e9f30c63
                        
# 2026-06-11 09:01:16  0.00B 设置环境变量 PYTHON_VERSION
ENV PYTHON_VERSION=3.14.6
                        
# 2026-06-11 09:01:16  9.25MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	apt-get update; 	apt-get install -y --no-install-recommends 		ca-certificates 		netbase 		tzdata 	; 	rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2026-06-11 09:01:16  0.00B 设置环境变量 PATH
ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2026-06-10 08:00:00  97.21MB 
# debian.sh --arch 'arm64' out/ 'bookworm' '@1781049600'
                        
                    

镜像信息

{
    "Id": "sha256:022d6f143d805f2105b9280197e0bddd4869c88f2508dcd7e82234844c0217ed",
    "RepoTags": [
        "ghcr.io/music-assistant/server:latest",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/music-assistant/server:latest-linuxarm64"
    ],
    "RepoDigests": [
        "ghcr.io/music-assistant/server@sha256:5ded610a2804fb7a973d2cbe390df09ceb67f0d7f603bcacd21ebaaa5a8a9b62",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/music-assistant/server@sha256:1c9cdc394778bf04d61d62c126aa0d6dfd0356cc06f61c5ead66906bdd2b8534"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-08-12T13:36:18.347077454Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "8095/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/app/venv/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "PYTHON_VERSION=3.14.6",
            "PYTHON_SHA256=143b1dddefaec3bd2e21e3b839b34a2b7fb9842272883c576420d605e9f30c63",
            "VIRTUAL_ENV=/app/venv"
        ],
        "Cmd": null,
        "Image": "",
        "Volumes": {
            "/data": {}
        },
        "WorkingDir": "/app/venv",
        "Entrypoint": [
            "/usr/local/bin/entrypoint.sh",
            "--data-dir",
            "/data",
            "--cache-dir",
            "/data/.cache"
        ],
        "OnBuild": null,
        "Labels": {
            "io.hass.description": "Music Assistant Server",
            "io.hass.name": "Music Assistant Server",
            "io.hass.platform": "linux/arm64",
            "io.hass.type": "addon",
            "io.hass.version": "2.9.13",
            "org.opencontainers.image.authors": "The Music Assistant Team",
            "org.opencontainers.image.description": "Music Assistant is a free, opensource Media library manager that connects to your streaming services and a wide range of connected speakers. The server is the beating heart, the core of Music Assistant and must run on an always-on device like a Raspberry Pi, a NAS or an Intel NUC or alike.",
            "org.opencontainers.image.documentation": "https://music-assistant.io",
            "org.opencontainers.image.licenses": "Apache License 2.0",
            "org.opencontainers.image.source": "https://github.com/music-assistant/server",
            "org.opencontainers.image.title": "Music Assistant Server"
        }
    },
    "Architecture": "arm64",
    "Os": "linux",
    "Size": 2247161462,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/94174d46f79d9b6b832683a5ab58b44e215e9aa9153c890c1e354f99bfe4bfac/diff:/var/lib/docker/overlay2/40fd15f25639b0a88a340440d76047748856f27cc997bbfa4a1a1482d6d79c7b/diff:/var/lib/docker/overlay2/a7c7abecb916a568a6f4d719dadf9f19f98c39db7897214710dc9d928f0b9a31/diff:/var/lib/docker/overlay2/870eeff830e220b2d7de6f206e6671f4568ae13bba75d21f47d38a4952e43a89/diff:/var/lib/docker/overlay2/d0de06614d5fa384301884c636cd86f6f6e4cb9dcc8949b746c799d58740712f/diff:/var/lib/docker/overlay2/2cd1faac08826bb160e1e34be700414dd4de5c221f1a0cf5e92b62a9d591ad69/diff:/var/lib/docker/overlay2/94ef0b3973ed8404263b77491152dae51120275698db1a8ee2ce05f8e247c15c/diff:/var/lib/docker/overlay2/71555bf49433f9f3625c8704bde627ad60bdab56a0dcae99b1d2b73555863d25/diff:/var/lib/docker/overlay2/659c8915223abcae6f8c58c9ac93e994439c7ba67aec017484461cbd99451608/diff:/var/lib/docker/overlay2/389f1bfe33eadb8e447e61ef51a75cecea169d5ea9f62b00640a982dbcf23fa6/diff:/var/lib/docker/overlay2/6d2054a857e442fa2d2b202cab007a25a5852645e6a4c2f4ba2986b3dc1fec66/diff:/var/lib/docker/overlay2/9805e173cd57169f7d4a629dec72e3067ccd7de015b3450b9cec06c99dd9aa33/diff:/var/lib/docker/overlay2/8329db0557247b720ee34ff50c8f3ad44f504598cd2cd49e4bf7b3af4279c460/diff:/var/lib/docker/overlay2/474519b452e744a67443efcc7a1b9decff4c2ba32c1b775c08676b2b83001c9d/diff:/var/lib/docker/overlay2/ae8b9fb5327e62db317c9548904e5f3de4583b04a461309126d7d0c97c652d40/diff:/var/lib/docker/overlay2/5c7a42793b14cd86d3ed3914ab5aaf493f172fcf540706ec8124ab93fc2ea396/diff:/var/lib/docker/overlay2/abb66c68d8cf05b21627df778f3061fa9775e23e207ca446cb19d9d005a122ec/diff:/var/lib/docker/overlay2/13ea18947fc9542347ad0b239af0ec331415afc9c814db0c34d619f7e32d7a52/diff:/var/lib/docker/overlay2/f52375c14e749d3a740ff1fbd22e72e3eac18edb744a346e71ea6bff191fd6e1/diff:/var/lib/docker/overlay2/1e87e6ec0512e4842b7c28c9ee1b859d70cf5eb0c6aed9db91d388501726e2c7/diff:/var/lib/docker/overlay2/48c8c6d339b451ac9803abccc114beff3fe37b0b9b5f2783a5de41cc3dc5fd28/diff",
            "MergedDir": "/var/lib/docker/overlay2/fc2595b8b31078639b56a53063b88e1b0d84567283cd50b851de49c613e06bd7/merged",
            "UpperDir": "/var/lib/docker/overlay2/fc2595b8b31078639b56a53063b88e1b0d84567283cd50b851de49c613e06bd7/diff",
            "WorkDir": "/var/lib/docker/overlay2/fc2595b8b31078639b56a53063b88e1b0d84567283cd50b851de49c613e06bd7/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:5e34d05421f9491747bc11c68b1a7f5029b0aefb18eb9166935ac52be45fb299",
            "sha256:2cead7f68d7ffa7d49c77e47b5b75ac51d6bf9ab4de0288c5362ff5c6570f23f",
            "sha256:0c331517abf58e8fd638218c466504af1087978fa2f554fafc380784a1b02ccc",
            "sha256:8eab252094e3b0cf56e44781ea70b91a98e34c65afc18abc477fc1e9a69468fb",
            "sha256:7a503c92719a23789eca7fc5c7041c655db52c9a9c97411e91aa134e3c44afef",
            "sha256:ba60ea7e4b26f61943e5e304e5b7376832cbc5f9812b449516fea95c042a9f5f",
            "sha256:963e3da940368b4b1fa7917856f83e2e891cb5b382c65eccd051e29f992e3a68",
            "sha256:12e1afbac23d1a727bf21585dda75f5a9b5f39e695c56fe147da1695722b1e98",
            "sha256:4edcb9c537d0324218dca38cfa35fac98186f88ad6896751a3d65c4c595e4c58",
            "sha256:2ab0684f0bb540412e84c029d350bdea11f97973f54c8b1c9c6bafc5ea4e7882",
            "sha256:a2144d655ab26c04357f291630f43608b3945ff424c7d3c02b0b7e0b01e94bbc",
            "sha256:69538be3e7bb8790bd10cef60520da3a1a974859518620f1eb4245073c952264",
            "sha256:71089eafb00d7e0584544bcdcef14962b54a6d3907d67d341e2ddcc550004f41",
            "sha256:4b7f7bce3bed3bd36a2239daddb0c800b14846700756e9817a75048c9d1999b2",
            "sha256:7853eaada1d54965bf8522b5ee6295198adc7d7e775c4a2df56fc6b85d5cc355",
            "sha256:92e63cd0cea2e374cce77305651136f46610415a879c791b2ebb62c9127afa3b",
            "sha256:584e9e27dbe3e8dfff415f277a331bba9bfc38c3cd8905ad577cf3d3dd1bc2db",
            "sha256:795397e6c54d67a6984e2f171edb4b066e3161d6d12307e52cdf70a800398adb",
            "sha256:954f7e463515db757d3be462dcae7aa8ff67502620a2b7c4c38df81c2af8f678",
            "sha256:d1f1dcb9c792dde74dd85dc4a23ca59b438fe5a8e634f5d5a9ddeece3447e7ec",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:a7446c0d680430eca18073268e569d55d72e3a23dac95f0c6cf35af3b6711e16"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-08-26T14:38:04.62966111+08:00"
    }
}

更多版本

ghcr.io/music-assistant/server:latest

linux/amd64 ghcr.io623.18MB2025-03-15 19:48
1291

ghcr.io/music-assistant/server:beta

linux/amd64 ghcr.io2.43GB2026-06-19 20:21
131

ghcr.io/music-assistant/server:2.9.9

linux/amd64 ghcr.io2.46GB2026-07-18 21:45
82

ghcr.io/music-assistant/server:latest

linux/arm64 ghcr.io2.25GB2026-08-26 14:39
11
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×