$ docker pull unit@sha256:38a1ae31d135781efb221e4f0fc15ea94ed237bcc0704c266960bff853c68b94
Manifest MIME: application/vnd.oci.image.index.v1+json
Platforms: 4
linux; amd64
unknown; unknown
linux; arm64 variant v8
unknown; unknown
unit:go1.24
- linux; amd64
$ docker pull unit@sha256:ed29d752283a347e35f0a68d2337f54389df41fe49f9906e8b36079836928442
Manifest MIME: application/vnd.docker.distribution.manifest.v2+json
Total Size: 329.6 MB (329619021 bytes)
(compressed transfer size, not on-disk size)
Image ID: sha256:de92e70872a71fe01b7cadcc98d115199f3a3409e1ae3458a5d6e9c8ce517cc6
Entrypoint: ["\/usr\/local\/bin\/docker-entrypoint.sh"]
Default Command: ["unitd","--no-daemon","--control","unix:\/var\/run\/control.unit.sock"]
# Wed, 10 May 2023 23:29:59 GMT
RUN # debian.sh --arch 'amd64' out/ 'bookworm' '@1743984000'
# Wed, 10 May 2023 23:29:59 GMT
RUN set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates curl gnupg netbase sq wget ; rm -rf /var/lib/apt/lists/* # buildkit
# Tue, 09 Jan 2024 01:14:25 GMT
RUN set -eux; apt-get update; apt-get install -y --no-install-recommends git mercurial openssh-client subversion procps ; rm -rf /var/lib/apt/lists/* # buildkit
# Mon, 03 Mar 2025 18:37:38 GMT
RUN set -eux; apt-get update; apt-get install -y --no-install-recommends g++ gcc libc6-dev make pkg-config ; rm -rf /var/lib/apt/lists/* # buildkit
# Mon, 03 Mar 2025 18:37:38 GMT
ENV GOLANG_VERSION=1.24.2
# Mon, 03 Mar 2025 18:37:38 GMT
ENV GOTOOLCHAIN=local
# Mon, 03 Mar 2025 18:37:38 GMT
ENV GOPATH=/go
# Mon, 03 Mar 2025 18:37:38 GMT
ENV PATH=/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
# Mon, 03 Mar 2025 18:37:38 GMT
COPY /target/ / # buildkit
# Mon, 03 Mar 2025 18:37:38 GMT
RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 1777 "$GOPATH" # buildkit
# Mon, 03 Mar 2025 18:37:38 GMT
WORKDIR /go
# Mon, 03 Mar 2025 18:37:38 GMT
LABEL org.opencontainers.image.title=Unit (go1.24)
# Mon, 03 Mar 2025 18:37:38 GMT
LABEL org.opencontainers.image.description=Official build of Unit for Docker.
# Mon, 03 Mar 2025 18:37:38 GMT
LABEL org.opencontainers.image.url=https://unit.nginx.org
# Mon, 03 Mar 2025 18:37:38 GMT
LABEL org.opencontainers.image.source=https://github.com/nginx/unit
# Mon, 03 Mar 2025 18:37:38 GMT
LABEL org.opencontainers.image.documentation=https://unit.nginx.org/installation/#docker-images
# Mon, 03 Mar 2025 18:37:38 GMT
LABEL org.opencontainers.image.vendor=NGINX Docker Maintainers <[email protected] >
# Mon, 03 Mar 2025 18:37:38 GMT
LABEL org.opencontainers.image.version=1.34.2
# Mon, 03 Mar 2025 18:37:38 GMT
RUN set -ex && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get install --no-install-recommends --no-install-suggests -y ca-certificates git build-essential libssl-dev libpcre2-dev curl pkg-config libclang-dev cmake && export RUST_VERSION=1.83.0 && export RUSTUP_HOME=/usr/src/unit/rustup && export CARGO_HOME=/usr/src/unit/cargo && export PATH=/usr/src/unit/cargo/bin:$PATH && dpkgArch="$(dpkg --print-architecture)" && case "${dpkgArch##*-}" in amd64) rustArch="x86_64-unknown-linux-gnu"; rustupSha256="6aeece6993e902708983b209d04c0d1dbb14ebb405ddb87def578d41f920f56d" ;; arm64) rustArch="aarch64-unknown-linux-gnu"; rustupSha256="1cffbf51e63e634c746f741de50649bbbcbd9dbe1de363c9ecef64e278dba2b2" ;; *) echo >&2 "unsupported architecture: ${dpkgArch}"; exit 1 ;; esac && url="https://static.rust-lang.org/rustup/archive/1.27.1/${rustArch}/rustup-init" && curl -L -O "$url" && echo "${rustupSha256} *rustup-init" | sha256sum -c - && chmod +x rustup-init && ./rustup-init -y --no-modify-path --profile minimal --default-toolchain $RUST_VERSION --default-host ${rustArch} && rm rustup-init && rustup --version && cargo --version && rustc --version && mkdir -p /usr/lib/unit/modules /usr/lib/unit/debug-modules && mkdir -p /usr/src/unit && cd /usr/src/unit && git clone --depth 1 -b 1.34.2-1 https://github.com/nginx/unit && cd unit && NCPU="$(getconf _NPROCESSORS_ONLN)" && DEB_HOST_MULTIARCH="$(dpkg-architecture -q DEB_HOST_MULTIARCH)" && CC_OPT="$(DEB_BUILD_MAINT_OPTIONS="hardening=+all,-pie" DEB_CFLAGS_MAINT_APPEND="-Wp,-D_FORTIFY_SOURCE=2 -fPIC" dpkg-buildflags --get CFLAGS)" && LD_OPT="$(DEB_BUILD_MAINT_OPTIONS="hardening=+all,-pie" DEB_LDFLAGS_MAINT_APPEND="-Wl,--as-needed -pie" dpkg-buildflags --get LDFLAGS)" && CONFIGURE_ARGS_MODULES="--prefix=/usr --statedir=/var/lib/unit --control=unix:/var/run/control.unit.sock --runstatedir=/var/run --pid=/var/run/unit.pid --logdir=/var/log --log=/var/log/unit.log --tmpdir=/var/tmp --user=unit --group=unit --openssl --libdir=/usr/lib/$DEB_HOST_MULTIARCH" && CONFIGURE_ARGS="$CONFIGURE_ARGS_MODULES --njs --otel" && make -j $NCPU -C pkg/contrib .njs && export PKG_CONFIG_PATH=$(pwd)/pkg/contrib/njs/build && ./configure $CONFIGURE_ARGS --cc-opt="$CC_OPT" --ld-opt="$LD_OPT" --modulesdir=/usr/lib/unit/debug-modules --debug && make -j $NCPU unitd && install -pm755 build/sbin/unitd /usr/sbin/unitd-debug && make clean && ./configure $CONFIGURE_ARGS --cc-opt="$CC_OPT" --ld-opt="$LD_OPT" --modulesdir=/usr/lib/unit/modules && make -j $NCPU unitd && install -pm755 build/sbin/unitd /usr/sbin/unitd && make clean && /bin/true && ./configure $CONFIGURE_ARGS_MODULES --cc-opt="$CC_OPT" --modulesdir=/usr/lib/unit/debug-modules --debug && ./configure go --go-path=$GOPATH && make -j $NCPU go-install-src libunit-install && make clean && ./configure $CONFIGURE_ARGS_MODULES --cc-opt="$CC_OPT" --modulesdir=/usr/lib/unit/modules && ./configure go --go-path=$GOPATH && make -j $NCPU go-install-src libunit-install && cd && rm -rf /usr/src/unit && for f in /usr/sbin/unitd /usr/lib/unit/modules/*.unit.so; do ldd $f | awk '/=>/{print $(NF-1)}' | while read n; do dpkg-query -S $n; done | sed 's/^\([^:]\+\):.*$/\1/' | sort | uniq >> /requirements.apt; done && apt-mark showmanual | xargs apt-mark auto > /dev/null && { [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; } && /bin/true && mkdir -p /var/lib/unit/ && mkdir -p /docker-entrypoint.d/ && groupadd --gid 999 unit && useradd --uid 999 --gid unit --no-create-home --home /nonexistent --comment "unit user" --shell /bin/false unit && apt-get update && apt-get --no-install-recommends --no-install-suggests -y install curl $(cat /requirements.apt) && apt-get purge -y --auto-remove build-essential && rm -rf /var/lib/apt/lists/* && rm -f /requirements.apt && ln -sf /dev/stderr /var/log/unit.log # buildkit
# Mon, 03 Mar 2025 18:37:38 GMT
COPY docker-entrypoint.sh /usr/local/bin/ # buildkit
# Mon, 03 Mar 2025 18:37:38 GMT
COPY welcome.* /usr/share/unit/welcome/ # buildkit
# Mon, 03 Mar 2025 18:37:38 GMT
STOPSIGNAL SIGTERM
# Mon, 03 Mar 2025 18:37:38 GMT
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh" ]
# Mon, 03 Mar 2025 18:37:38 GMT
EXPOSE map[80/tcp:{}]
# Mon, 03 Mar 2025 18:37:38 GMT
CMD ["unitd" "--no-daemon" "--control" "unix:/var/run/control.unit.sock" ]
Layers:
sha256:23b7d26ef1d294256da0d70ce374277b9aab5ca683015073316005cb63d33849
Last Modified: Tue, 08 Apr 2025 00:22:55 GMT
Size: 48.5 MB (48490541 bytes)
MIME: application/vnd.oci.image.layer.v1.tar+gzip
sha256:07d1b5af933d2dfc3d0dd509d6e20534825e4a537f7b006a6cb5b8e5a1f20905
Last Modified: Tue, 08 Apr 2025 01:24:20 GMT
Size: 24.0 MB (24011090 bytes)
MIME: application/vnd.oci.image.layer.v1.tar+gzip
sha256:1eb98adba0eb44a2e4facf9ca3626a4a66feedd0dd56d159cca90a35205744e7
Last Modified: Tue, 08 Apr 2025 02:13:59 GMT
Size: 64.4 MB (64396468 bytes)
MIME: application/vnd.oci.image.layer.v1.tar+gzip
sha256:6eb08228d7a5ec326856f57d2a6db89dd7a3ee8773f9adc904269c2f16e4eade
Last Modified: Tue, 08 Apr 2025 03:16:31 GMT
Size: 92.3 MB (92333222 bytes)
MIME: application/vnd.oci.image.layer.v1.tar+gzip
sha256:f1d296901bdc593d88a0813bb00eef0974b68222cba6add046b831c086a1c68c
Last Modified: Tue, 01 Apr 2025 17:07:26 GMT
Size: 78.9 MB (78942217 bytes)
MIME: application/vnd.oci.image.layer.v1.tar+gzip
sha256:cc508665364bf890145a9b00cb0af7704946c2051213fcb9f3be3df777619bc0
Last Modified: Tue, 08 Apr 2025 03:16:29 GMT
Size: 127.0 B
MIME: application/vnd.oci.image.layer.v1.tar+gzip
sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1
Last Modified: Tue, 07 Mar 2017 15:01:14 GMT
Size: 32.0 B
MIME: application/vnd.oci.image.layer.v1.tar+gzip
sha256:aeff270aeec8b4155d51b96d778a5f13c7895beb1a37579d4fbd9ff81b1bdc90
Last Modified: Tue, 08 Apr 2025 04:24:35 GMT
Size: 21.4 MB (21442609 bytes)
MIME: application/vnd.oci.image.layer.v1.tar+gzip
sha256:d1e08c1546edceccded8bcc4d7d4fa200560fbedf12ecd6965a34602b2df63ab
Last Modified: Tue, 08 Apr 2025 04:24:35 GMT
Size: 1.3 KB (1261 bytes)
MIME: application/vnd.oci.image.layer.v1.tar+gzip
sha256:b6a304ddcb1cdef38ebcede9dc8aa892d6f65ab25e9e87fe2fcf92eb666359cd
Last Modified: Tue, 08 Apr 2025 04:24:35 GMT
Size: 1.5 KB (1454 bytes)
MIME: application/vnd.oci.image.layer.v1.tar+gzip
unit:go1.24
- unknown; unknown
$ docker pull unit@sha256:6bdbd4a26eccb04b37f499ed7472eb456a50022a12bd1c1cc7691794248b8d32
Manifest MIME: application/vnd.docker.distribution.manifest.v2+json
Total Size: 28.4 KB (28362 bytes)
(compressed transfer size, not on-disk size)
Image ID: sha256:84106022c216d6938976cd00d6abe317ac4426d081a445b32275aaafbb862f00
Layers:
sha256:d2851af6d4d78d5525433d32198cfdc0a7e166a1c859ce2d6f82974f57aa0360
Last Modified: Tue, 08 Apr 2025 04:24:38 GMT
Size: 28.4 KB (28362 bytes)
MIME: application/vnd.in-toto+json
unit:go1.24
- linux; arm64 variant v8
$ docker pull unit@sha256:3ca3f0811fc3a3b022ab63e563da56ba6c45a0b1728d3c0f66742fc32e6bcc2e
Manifest MIME: application/vnd.docker.distribution.manifest.v2+json
Total Size: 318.6 MB (318607326 bytes)
(compressed transfer size, not on-disk size)
Image ID: sha256:8a7618e6330b2e3484be35559583fdd4636f3d0f04e3406b2d20334eb13ec4c1
Entrypoint: ["\/usr\/local\/bin\/docker-entrypoint.sh"]
Default Command: ["unitd","--no-daemon","--control","unix:\/var\/run\/control.unit.sock"]
# Wed, 10 May 2023 23:29:59 GMT
RUN # debian.sh --arch 'arm64' out/ 'bookworm' '@1742169600'
# Wed, 10 May 2023 23:29:59 GMT
RUN set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates curl gnupg netbase sq wget ; rm -rf /var/lib/apt/lists/* # buildkit
# Tue, 09 Jan 2024 01:14:25 GMT
RUN set -eux; apt-get update; apt-get install -y --no-install-recommends git mercurial openssh-client subversion procps ; rm -rf /var/lib/apt/lists/* # buildkit
# Mon, 03 Mar 2025 18:37:38 GMT
RUN set -eux; apt-get update; apt-get install -y --no-install-recommends g++ gcc libc6-dev make pkg-config ; rm -rf /var/lib/apt/lists/* # buildkit
# Mon, 03 Mar 2025 18:37:38 GMT
ENV GOLANG_VERSION=1.24.2
# Mon, 03 Mar 2025 18:37:38 GMT
ENV GOTOOLCHAIN=local
# Mon, 03 Mar 2025 18:37:38 GMT
ENV GOPATH=/go
# Mon, 03 Mar 2025 18:37:38 GMT
ENV PATH=/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
# Mon, 03 Mar 2025 18:37:38 GMT
COPY /target/ / # buildkit
# Mon, 03 Mar 2025 18:37:38 GMT
RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 1777 "$GOPATH" # buildkit
# Mon, 03 Mar 2025 18:37:38 GMT
WORKDIR /go
# Mon, 03 Mar 2025 18:37:38 GMT
LABEL org.opencontainers.image.title=Unit (go1.24)
# Mon, 03 Mar 2025 18:37:38 GMT
LABEL org.opencontainers.image.description=Official build of Unit for Docker.
# Mon, 03 Mar 2025 18:37:38 GMT
LABEL org.opencontainers.image.url=https://unit.nginx.org
# Mon, 03 Mar 2025 18:37:38 GMT
LABEL org.opencontainers.image.source=https://github.com/nginx/unit
# Mon, 03 Mar 2025 18:37:38 GMT
LABEL org.opencontainers.image.documentation=https://unit.nginx.org/installation/#docker-images
# Mon, 03 Mar 2025 18:37:38 GMT
LABEL org.opencontainers.image.vendor=NGINX Docker Maintainers <[email protected] >
# Mon, 03 Mar 2025 18:37:38 GMT
LABEL org.opencontainers.image.version=1.34.2
# Mon, 03 Mar 2025 18:37:38 GMT
RUN set -ex && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get install --no-install-recommends --no-install-suggests -y ca-certificates git build-essential libssl-dev libpcre2-dev curl pkg-config libclang-dev cmake && export RUST_VERSION=1.83.0 && export RUSTUP_HOME=/usr/src/unit/rustup && export CARGO_HOME=/usr/src/unit/cargo && export PATH=/usr/src/unit/cargo/bin:$PATH && dpkgArch="$(dpkg --print-architecture)" && case "${dpkgArch##*-}" in amd64) rustArch="x86_64-unknown-linux-gnu"; rustupSha256="6aeece6993e902708983b209d04c0d1dbb14ebb405ddb87def578d41f920f56d" ;; arm64) rustArch="aarch64-unknown-linux-gnu"; rustupSha256="1cffbf51e63e634c746f741de50649bbbcbd9dbe1de363c9ecef64e278dba2b2" ;; *) echo >&2 "unsupported architecture: ${dpkgArch}"; exit 1 ;; esac && url="https://static.rust-lang.org/rustup/archive/1.27.1/${rustArch}/rustup-init" && curl -L -O "$url" && echo "${rustupSha256} *rustup-init" | sha256sum -c - && chmod +x rustup-init && ./rustup-init -y --no-modify-path --profile minimal --default-toolchain $RUST_VERSION --default-host ${rustArch} && rm rustup-init && rustup --version && cargo --version && rustc --version && mkdir -p /usr/lib/unit/modules /usr/lib/unit/debug-modules && mkdir -p /usr/src/unit && cd /usr/src/unit && git clone --depth 1 -b 1.34.2-1 https://github.com/nginx/unit && cd unit && NCPU="$(getconf _NPROCESSORS_ONLN)" && DEB_HOST_MULTIARCH="$(dpkg-architecture -q DEB_HOST_MULTIARCH)" && CC_OPT="$(DEB_BUILD_MAINT_OPTIONS="hardening=+all,-pie" DEB_CFLAGS_MAINT_APPEND="-Wp,-D_FORTIFY_SOURCE=2 -fPIC" dpkg-buildflags --get CFLAGS)" && LD_OPT="$(DEB_BUILD_MAINT_OPTIONS="hardening=+all,-pie" DEB_LDFLAGS_MAINT_APPEND="-Wl,--as-needed -pie" dpkg-buildflags --get LDFLAGS)" && CONFIGURE_ARGS_MODULES="--prefix=/usr --statedir=/var/lib/unit --control=unix:/var/run/control.unit.sock --runstatedir=/var/run --pid=/var/run/unit.pid --logdir=/var/log --log=/var/log/unit.log --tmpdir=/var/tmp --user=unit --group=unit --openssl --libdir=/usr/lib/$DEB_HOST_MULTIARCH" && CONFIGURE_ARGS="$CONFIGURE_ARGS_MODULES --njs --otel" && make -j $NCPU -C pkg/contrib .njs && export PKG_CONFIG_PATH=$(pwd)/pkg/contrib/njs/build && ./configure $CONFIGURE_ARGS --cc-opt="$CC_OPT" --ld-opt="$LD_OPT" --modulesdir=/usr/lib/unit/debug-modules --debug && make -j $NCPU unitd && install -pm755 build/sbin/unitd /usr/sbin/unitd-debug && make clean && ./configure $CONFIGURE_ARGS --cc-opt="$CC_OPT" --ld-opt="$LD_OPT" --modulesdir=/usr/lib/unit/modules && make -j $NCPU unitd && install -pm755 build/sbin/unitd /usr/sbin/unitd && make clean && /bin/true && ./configure $CONFIGURE_ARGS_MODULES --cc-opt="$CC_OPT" --modulesdir=/usr/lib/unit/debug-modules --debug && ./configure go --go-path=$GOPATH && make -j $NCPU go-install-src libunit-install && make clean && ./configure $CONFIGURE_ARGS_MODULES --cc-opt="$CC_OPT" --modulesdir=/usr/lib/unit/modules && ./configure go --go-path=$GOPATH && make -j $NCPU go-install-src libunit-install && cd && rm -rf /usr/src/unit && for f in /usr/sbin/unitd /usr/lib/unit/modules/*.unit.so; do ldd $f | awk '/=>/{print $(NF-1)}' | while read n; do dpkg-query -S $n; done | sed 's/^\([^:]\+\):.*$/\1/' | sort | uniq >> /requirements.apt; done && apt-mark showmanual | xargs apt-mark auto > /dev/null && { [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; } && /bin/true && mkdir -p /var/lib/unit/ && mkdir -p /docker-entrypoint.d/ && groupadd --gid 999 unit && useradd --uid 999 --gid unit --no-create-home --home /nonexistent --comment "unit user" --shell /bin/false unit && apt-get update && apt-get --no-install-recommends --no-install-suggests -y install curl $(cat /requirements.apt) && apt-get purge -y --auto-remove build-essential && rm -rf /var/lib/apt/lists/* && rm -f /requirements.apt && ln -sf /dev/stderr /var/log/unit.log # buildkit
# Mon, 03 Mar 2025 18:37:38 GMT
COPY docker-entrypoint.sh /usr/local/bin/ # buildkit
# Mon, 03 Mar 2025 18:37:38 GMT
COPY welcome.* /usr/share/unit/welcome/ # buildkit
# Mon, 03 Mar 2025 18:37:38 GMT
STOPSIGNAL SIGTERM
# Mon, 03 Mar 2025 18:37:38 GMT
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh" ]
# Mon, 03 Mar 2025 18:37:38 GMT
EXPOSE map[80/tcp:{}]
# Mon, 03 Mar 2025 18:37:38 GMT
CMD ["unitd" "--no-daemon" "--control" "unix:/var/run/control.unit.sock" ]
Layers:
sha256:545aa82ec479fb0ff3a196141d43d14e5ab1bd1098048223bfd21e505b70581f
Last Modified: Mon, 17 Mar 2025 22:17:15 GMT
Size: 48.3 MB (48304855 bytes)
MIME: application/vnd.oci.image.layer.v1.tar+gzip
sha256:4378a6c11dea5043896b9425853a850807e5845b0018fe01ddee56c16245fc3c
Last Modified: Tue, 18 Mar 2025 05:00:37 GMT
Size: 23.5 MB (23544349 bytes)
MIME: application/vnd.oci.image.layer.v1.tar+gzip
sha256:140d15be2fea6dcd21c20cadae2601a118c08a938168718b2612ad6aca91f74a
Last Modified: Tue, 18 Mar 2025 13:13:07 GMT
Size: 64.4 MB (64355791 bytes)
MIME: application/vnd.oci.image.layer.v1.tar+gzip
sha256:81c7d0b299d26ce0f065a1fac5d6ad12aaa605ef18f04114a5b9e048f7d59782
Last Modified: Tue, 18 Mar 2025 14:43:52 GMT
Size: 86.4 MB (86397409 bytes)
MIME: application/vnd.oci.image.layer.v1.tar+gzip
sha256:a002eda2038f0953467f843586445333b2af3e827e57b15849040931f2903fb4
Last Modified: Tue, 01 Apr 2025 17:07:27 GMT
Size: 75.2 MB (75200208 bytes)
MIME: application/vnd.oci.image.layer.v1.tar+gzip
sha256:26ce3b98b722efcafb76ae4dc509b18deb741f12eb978388390c2ba5bcf4f5d5
Last Modified: Tue, 01 Apr 2025 17:07:24 GMT
Size: 126.0 B
MIME: application/vnd.oci.image.layer.v1.tar+gzip
sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1
Last Modified: Tue, 07 Mar 2017 15:01:14 GMT
Size: 32.0 B
MIME: application/vnd.oci.image.layer.v1.tar+gzip
sha256:58b656825eaa20a26b019ee45f49ee0cea6c945633c70ed4faf4dfc9ecf2c008
Last Modified: Tue, 01 Apr 2025 19:35:28 GMT
Size: 20.8 MB (20801839 bytes)
MIME: application/vnd.oci.image.layer.v1.tar+gzip
sha256:01b82c95eeff6c9df5d945150d8129c71df0e52f3567fa97b562d072108bab3b
Last Modified: Tue, 01 Apr 2025 19:35:27 GMT
Size: 1.3 KB (1263 bytes)
MIME: application/vnd.oci.image.layer.v1.tar+gzip
sha256:efa5cfb69c14e6d039f865e8dcf159aa399908711d65454ccea88d3f989adfae
Last Modified: Tue, 01 Apr 2025 19:35:27 GMT
Size: 1.5 KB (1454 bytes)
MIME: application/vnd.oci.image.layer.v1.tar+gzip
unit:go1.24
- unknown; unknown
$ docker pull unit@sha256:53d9926226827b7592e5de461400dca4b4fae8d0f2dc1c1bd2f70febff42240c
Manifest MIME: application/vnd.docker.distribution.manifest.v2+json
Total Size: 28.5 KB (28466 bytes)
(compressed transfer size, not on-disk size)
Image ID: sha256:91a889494bf8961758b094167fb23ecfe9b3a014a70f8b117c2d4aabd09a6548
Layers:
sha256:c0f18edd95922730618d6dc1821853bbf2205a572255bee2cf2f9c11c2158d3d
Last Modified: Tue, 01 Apr 2025 19:35:26 GMT
Size: 28.5 KB (28466 bytes)
MIME: application/vnd.in-toto+json