Namespace
openlistteam
Image / Tag
openlist:latest-lite-aio
Content Digest
sha256:b4b8dfd5fefc0f5dcbf76b2f0ddd74a55d862a476523f4488027d7178cf05e39
Details
Created

2025-11-25 11:57:20 UTC

Size

82.2 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-11-25T11:57:08.155Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    72206ac9f69a15f2e142979cb92e694bafc34a3b
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.8-lite-aio

Environment
PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

RUN_ARIA2

true

UMASK

022


Layers

[#000] sha256:6fd6482cc0d6bfb8d86ae4adbb0f5de6a3625a1892a2c95894238b07e75551dc - 4.02% (3.3 MB)

[#001] sha256:3036784be14c631fd57fe16eb6a72bdd3537504c4e793571030d655026696997 - 0.0% (115 Bytes)

[#002] sha256:6f825670b3c434130d96ab266e8b707aae8abbea4d033e01328a6a785e62a302 - 63.82% (52.5 MB)

[#003] sha256:32fc678be54eb604907216c55ff0f9e08d623f2c15f416560a17988a1f4b4916 - 0.0% (253 Bytes)

[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#005] sha256:62f8324382c1dee33f01d5a3bbb9d93ab14bb603d0af96372c6be121c7ab2238 - 0.0% (1017 Bytes)

[#006] sha256:dae2aed46517cf063b575f16b1542d76b85c00f0029c08bc941e16ba7f6eba7b - 32.16% (26.4 MB)

[#007] sha256:b470bbcfd1ef0948481c75ff97527e5661a997d38e9120711fe4abf4b0c98a32 - 0.0% (842 Bytes)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)


History
2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-20250108-x86.tar.gz / # buildkit

2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-11-24 20:27:44 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/386

2025-11-24 20:27:44 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-24 20:27:44 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-11-24 20:27:44 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-24 20:27:44 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-24 20:28:01 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c echo "🔍 Build args: INSTALL_FFMPEG=$INSTALL_FFMPEG, INSTALL_ARIA2=$INSTALL_ARIA2" && apk update && apk upgrade --no-cache && apk add --no-cache bash ca-certificates su-exec tzdata runit && if [ "$INSTALL_FFMPEG" = "true" ]; then echo "📦 Installing FFmpeg..." && apk add --no-cache ffmpeg; else echo "⏭️ Skipping FFmpeg installation"; fi && if [ "$INSTALL_ARIA2" = "true" ]; then echo "📦 Installing Aria2..." && apk add --no-cache curl aria2 && mkdir -p /opt/aria2/.aria2 && curl -fsSL --retry 3 https://codeload.github.com/P3TERX/aria2.conf/tar.gz/refs/heads/master -o /tmp/aria-conf.tar.gz && tar -zxvf /tmp/aria-conf.tar.gz -C /opt/aria2/.aria2 --strip-components=1 && rm -f /tmp/aria-conf.tar.gz && sed -i 's|rpc-secret|#rpc-secret|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/script.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/script.conf && mkdir -p /opt/service/stop/aria2/log && echo '#!/bin/sh' > /opt/service/stop/aria2/run && echo 'exec 2>&1' >> /opt/service/stop/aria2/run && echo 'exec aria2c --enable-rpc --rpc-allow-origin-all --conf-path=/opt/aria2/.aria2/aria2.conf' >> /opt/service/stop/aria2/run && echo '#!/bin/sh' > /opt/service/stop/aria2/log/run && echo 'mkdir -p /opt/openlist/data/log/aria2 2>/dev/null' >> /opt/service/stop/aria2/log/run && echo 'exec svlogd /opt/openlist/data/log/aria2' >> /opt/service/stop/aria2/log/run && chmod +x /opt/service/stop/aria2/run /opt/service/stop/aria2/log/run && touch /opt/aria2/.aria2/aria2.session && (cd /opt/aria2/.aria2 && ./tracker.sh && echo "✅ Tracker update completed successfully" || echo "⚠️ Tracker update failed, continuing..."); else echo "⏭️ Skipping Aria2 installation"; fi && rm -rf /var/cache/apk/* # buildkit

2025-11-24 20:28:01 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c mkdir -p /opt/service/start && chmod 777 /opt/service/start && mkdir -p /opt/service/stop/openlist && echo '#!/bin/sh' > /opt/service/stop/openlist/run && echo 'exec 2>&1' >> /opt/service/stop/openlist/run && echo 'cd /opt/openlist' >> /opt/service/stop/openlist/run && echo 'exec ./openlist server --no-prefix' >> /opt/service/stop/openlist/run && chmod +x /opt/service/stop/openlist/run # buildkit

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/386

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c addgroup -g ${GID} ${USER} && adduser -D -u ${UID} -G ${USER} ${USER} && mkdir -p /opt/openlist/data # buildkit

2025-11-25 11:57:19 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 /build/linux/386/openlist ./ # buildkit

2025-11-25 11:57:19 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-11-25 11:57:19 UTC (buildkit.dockerfile.v0)

USER openlist

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-11-25 11:57:20 UTC

Size

90.5 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-11-25T11:57:08.155Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    72206ac9f69a15f2e142979cb92e694bafc34a3b
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.8-lite-aio

Environment
PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

RUN_ARIA2

true

UMASK

022


Layers

[#000] sha256:d62bb7eb03b5936dc5a5665fd5a6ede7eab4a6bd0ed965be8c6c3c21e1e53931 - 3.84% (3.47 MB)

[#001] sha256:301e6ab723beb0fd5b46f7468e963773b55f6e283e67634db7747606a417457f - 0.0% (117 Bytes)

[#002] sha256:c064e2145457e32dfaa5b4225072a06ba2ecc93cce4636140b1d2cdabcda8df3 - 65.53% (59.3 MB)

[#003] sha256:25b639a5640e57efab03fe314174c92bbf19751e24771ee57a9a692b5c925293 - 0.0% (253 Bytes)

[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#005] sha256:eb68b5c70c606da6e8c1df91fef0d66b0b18e988715481419d9b15366ad4aa9f - 0.0% (1017 Bytes)

[#006] sha256:c2e036ee9cd206760fae6628e80c3de6d7683965714df2305f2bfc40e0517198 - 30.62% (27.7 MB)

[#007] sha256:b470bbcfd1ef0948481c75ff97527e5661a997d38e9120711fe4abf4b0c98a32 - 0.0% (842 Bytes)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)


History
2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-20250108-x86_64.tar.gz / # buildkit

2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/amd64

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-24 20:27:54 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c echo "🔍 Build args: INSTALL_FFMPEG=$INSTALL_FFMPEG, INSTALL_ARIA2=$INSTALL_ARIA2" && apk update && apk upgrade --no-cache && apk add --no-cache bash ca-certificates su-exec tzdata runit && if [ "$INSTALL_FFMPEG" = "true" ]; then echo "📦 Installing FFmpeg..." && apk add --no-cache ffmpeg; else echo "⏭️ Skipping FFmpeg installation"; fi && if [ "$INSTALL_ARIA2" = "true" ]; then echo "📦 Installing Aria2..." && apk add --no-cache curl aria2 && mkdir -p /opt/aria2/.aria2 && curl -fsSL --retry 3 https://codeload.github.com/P3TERX/aria2.conf/tar.gz/refs/heads/master -o /tmp/aria-conf.tar.gz && tar -zxvf /tmp/aria-conf.tar.gz -C /opt/aria2/.aria2 --strip-components=1 && rm -f /tmp/aria-conf.tar.gz && sed -i 's|rpc-secret|#rpc-secret|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/script.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/script.conf && mkdir -p /opt/service/stop/aria2/log && echo '#!/bin/sh' > /opt/service/stop/aria2/run && echo 'exec 2>&1' >> /opt/service/stop/aria2/run && echo 'exec aria2c --enable-rpc --rpc-allow-origin-all --conf-path=/opt/aria2/.aria2/aria2.conf' >> /opt/service/stop/aria2/run && echo '#!/bin/sh' > /opt/service/stop/aria2/log/run && echo 'mkdir -p /opt/openlist/data/log/aria2 2>/dev/null' >> /opt/service/stop/aria2/log/run && echo 'exec svlogd /opt/openlist/data/log/aria2' >> /opt/service/stop/aria2/log/run && chmod +x /opt/service/stop/aria2/run /opt/service/stop/aria2/log/run && touch /opt/aria2/.aria2/aria2.session && (cd /opt/aria2/.aria2 && ./tracker.sh && echo "✅ Tracker update completed successfully" || echo "⚠️ Tracker update failed, continuing..."); else echo "⏭️ Skipping Aria2 installation"; fi && rm -rf /var/cache/apk/* # buildkit

2025-11-24 20:27:54 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c mkdir -p /opt/service/start && chmod 777 /opt/service/start && mkdir -p /opt/service/stop/openlist && echo '#!/bin/sh' > /opt/service/stop/openlist/run && echo 'exec 2>&1' >> /opt/service/stop/openlist/run && echo 'cd /opt/openlist' >> /opt/service/stop/openlist/run && echo 'exec ./openlist server --no-prefix' >> /opt/service/stop/openlist/run && chmod +x /opt/service/stop/openlist/run # buildkit

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/amd64

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c addgroup -g ${GID} ${USER} && adduser -D -u ${UID} -G ${USER} ${USER} && mkdir -p /opt/openlist/data # buildkit

2025-11-25 11:57:19 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 /build/linux/amd64/openlist ./ # buildkit

2025-11-25 11:57:19 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-11-25 11:57:19 UTC (buildkit.dockerfile.v0)

USER openlist

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-11-25 11:57:22 UTC

Size

76.6 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-11-25T11:57:08.155Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    72206ac9f69a15f2e142979cb92e694bafc34a3b
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.8-lite-aio

Environment
PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

RUN_ARIA2

true

UMASK

022


Layers

[#000] sha256:4dc763b4cf5e7cd6b888add3a349266bdfa97f861fa2dd7218676afe3ed4d7fe - 4.19% (3.21 MB)

[#001] sha256:3036784be14c631fd57fe16eb6a72bdd3537504c4e793571030d655026696997 - 0.0% (115 Bytes)

[#002] sha256:b33f1e9307df153566e8d5bb7a4d01617413043dcb89ff5edf280255b0f91eb6 - 61.13% (46.8 MB)

[#003] sha256:aba3371af96f9c5490e640a705d34277d5da8ac1c7eee132e3d7d977f2237ab3 - 0.0% (252 Bytes)

[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#005] sha256:b24fb234915e4d0616cc568eb93342b4646ed9fec5a3c6c7728e2bc0b8640474 - 0.0% (1020 Bytes)

[#006] sha256:1bc1f73550195712a999cd3af52f25a08a7eda805315cccc978344b606196959 - 34.68% (26.6 MB)

[#007] sha256:b470bbcfd1ef0948481c75ff97527e5661a997d38e9120711fe4abf4b0c98a32 - 0.0% (842 Bytes)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)


History
2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-20250108-armhf.tar.gz / # buildkit

2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-11-24 20:27:44 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v6

2025-11-24 20:27:44 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-24 20:27:44 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-11-24 20:27:44 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-24 20:27:44 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-24 20:28:29 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c echo "🔍 Build args: INSTALL_FFMPEG=$INSTALL_FFMPEG, INSTALL_ARIA2=$INSTALL_ARIA2" && apk update && apk upgrade --no-cache && apk add --no-cache bash ca-certificates su-exec tzdata runit && if [ "$INSTALL_FFMPEG" = "true" ]; then echo "📦 Installing FFmpeg..." && apk add --no-cache ffmpeg; else echo "⏭️ Skipping FFmpeg installation"; fi && if [ "$INSTALL_ARIA2" = "true" ]; then echo "📦 Installing Aria2..." && apk add --no-cache curl aria2 && mkdir -p /opt/aria2/.aria2 && curl -fsSL --retry 3 https://codeload.github.com/P3TERX/aria2.conf/tar.gz/refs/heads/master -o /tmp/aria-conf.tar.gz && tar -zxvf /tmp/aria-conf.tar.gz -C /opt/aria2/.aria2 --strip-components=1 && rm -f /tmp/aria-conf.tar.gz && sed -i 's|rpc-secret|#rpc-secret|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/script.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/script.conf && mkdir -p /opt/service/stop/aria2/log && echo '#!/bin/sh' > /opt/service/stop/aria2/run && echo 'exec 2>&1' >> /opt/service/stop/aria2/run && echo 'exec aria2c --enable-rpc --rpc-allow-origin-all --conf-path=/opt/aria2/.aria2/aria2.conf' >> /opt/service/stop/aria2/run && echo '#!/bin/sh' > /opt/service/stop/aria2/log/run && echo 'mkdir -p /opt/openlist/data/log/aria2 2>/dev/null' >> /opt/service/stop/aria2/log/run && echo 'exec svlogd /opt/openlist/data/log/aria2' >> /opt/service/stop/aria2/log/run && chmod +x /opt/service/stop/aria2/run /opt/service/stop/aria2/log/run && touch /opt/aria2/.aria2/aria2.session && (cd /opt/aria2/.aria2 && ./tracker.sh && echo "✅ Tracker update completed successfully" || echo "⚠️ Tracker update failed, continuing..."); else echo "⏭️ Skipping Aria2 installation"; fi && rm -rf /var/cache/apk/* # buildkit

2025-11-24 20:28:30 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c mkdir -p /opt/service/start && chmod 777 /opt/service/start && mkdir -p /opt/service/stop/openlist && echo '#!/bin/sh' > /opt/service/stop/openlist/run && echo 'exec 2>&1' >> /opt/service/stop/openlist/run && echo 'cd /opt/openlist' >> /opt/service/stop/openlist/run && echo 'exec ./openlist server --no-prefix' >> /opt/service/stop/openlist/run && chmod +x /opt/service/stop/openlist/run # buildkit

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v6

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-25 11:57:19 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c addgroup -g ${GID} ${USER} && adduser -D -u ${UID} -G ${USER} ${USER} && mkdir -p /opt/openlist/data # buildkit

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 /build/linux/arm/v6/openlist ./ # buildkit

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

USER openlist

2025-11-25 11:57:22 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit

2025-11-25 11:57:22 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2025-11-25 11:57:22 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-11-25 11:57:22 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2025-11-25 11:57:22 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-11-25 11:57:22 UTC

Size

74.2 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-11-25T11:57:08.155Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    72206ac9f69a15f2e142979cb92e694bafc34a3b
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.8-lite-aio

Environment
PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

RUN_ARIA2

true

UMASK

022


Layers

[#000] sha256:56c91669ab0b059c942de9f47565cc578ebeeec80ce7488c8f72fd1c9652d1bf - 3.98% (2.95 MB)

[#001] sha256:3036784be14c631fd57fe16eb6a72bdd3537504c4e793571030d655026696997 - 0.0% (115 Bytes)

[#002] sha256:94aded5a6802e17d84d64343b845fc2e937de4427d5f110df6a170fb812fc5bd - 60.25% (44.7 MB)

[#003] sha256:f799f74b998f80a02965d46435d14c9ce93febc4262818406305c50f6924999f - 0.0% (252 Bytes)

[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#005] sha256:5d810329fac2e9dbacb4aefdacef2f5876750157815291e6d3191048bb7e4449 - 0.0% (1020 Bytes)

[#006] sha256:200bed939ed3b116b66c9293dc738b6dfd0212d7456a7eb935173a600b0cd5fc - 35.76% (26.5 MB)

[#007] sha256:b470bbcfd1ef0948481c75ff97527e5661a997d38e9120711fe4abf4b0c98a32 - 0.0% (842 Bytes)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)


History
2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-20250108-armv7.tar.gz / # buildkit

2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-11-24 20:27:44 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v7

2025-11-24 20:27:44 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-24 20:27:44 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-11-24 20:27:44 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-24 20:27:44 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-24 20:28:24 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c echo "🔍 Build args: INSTALL_FFMPEG=$INSTALL_FFMPEG, INSTALL_ARIA2=$INSTALL_ARIA2" && apk update && apk upgrade --no-cache && apk add --no-cache bash ca-certificates su-exec tzdata runit && if [ "$INSTALL_FFMPEG" = "true" ]; then echo "📦 Installing FFmpeg..." && apk add --no-cache ffmpeg; else echo "⏭️ Skipping FFmpeg installation"; fi && if [ "$INSTALL_ARIA2" = "true" ]; then echo "📦 Installing Aria2..." && apk add --no-cache curl aria2 && mkdir -p /opt/aria2/.aria2 && curl -fsSL --retry 3 https://codeload.github.com/P3TERX/aria2.conf/tar.gz/refs/heads/master -o /tmp/aria-conf.tar.gz && tar -zxvf /tmp/aria-conf.tar.gz -C /opt/aria2/.aria2 --strip-components=1 && rm -f /tmp/aria-conf.tar.gz && sed -i 's|rpc-secret|#rpc-secret|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/script.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/script.conf && mkdir -p /opt/service/stop/aria2/log && echo '#!/bin/sh' > /opt/service/stop/aria2/run && echo 'exec 2>&1' >> /opt/service/stop/aria2/run && echo 'exec aria2c --enable-rpc --rpc-allow-origin-all --conf-path=/opt/aria2/.aria2/aria2.conf' >> /opt/service/stop/aria2/run && echo '#!/bin/sh' > /opt/service/stop/aria2/log/run && echo 'mkdir -p /opt/openlist/data/log/aria2 2>/dev/null' >> /opt/service/stop/aria2/log/run && echo 'exec svlogd /opt/openlist/data/log/aria2' >> /opt/service/stop/aria2/log/run && chmod +x /opt/service/stop/aria2/run /opt/service/stop/aria2/log/run && touch /opt/aria2/.aria2/aria2.session && (cd /opt/aria2/.aria2 && ./tracker.sh && echo "✅ Tracker update completed successfully" || echo "⚠️ Tracker update failed, continuing..."); else echo "⏭️ Skipping Aria2 installation"; fi && rm -rf /var/cache/apk/* # buildkit

2025-11-24 20:28:25 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c mkdir -p /opt/service/start && chmod 777 /opt/service/start && mkdir -p /opt/service/stop/openlist && echo '#!/bin/sh' > /opt/service/stop/openlist/run && echo 'exec 2>&1' >> /opt/service/stop/openlist/run && echo 'cd /opt/openlist' >> /opt/service/stop/openlist/run && echo 'exec ./openlist server --no-prefix' >> /opt/service/stop/openlist/run && chmod +x /opt/service/stop/openlist/run # buildkit

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v7

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-25 11:57:19 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c addgroup -g ${GID} ${USER} && adduser -D -u ${UID} -G ${USER} ${USER} && mkdir -p /opt/openlist/data # buildkit

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 /build/linux/arm/v7/openlist ./ # buildkit

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

USER openlist

2025-11-25 11:57:22 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit

2025-11-25 11:57:22 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2025-11-25 11:57:22 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-11-25 11:57:22 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2025-11-25 11:57:22 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-11-25 11:57:22 UTC

Size

85.4 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-11-25T11:57:08.155Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    72206ac9f69a15f2e142979cb92e694bafc34a3b
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.8-lite-aio

Environment
PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

RUN_ARIA2

true

UMASK

022


Layers

[#000] sha256:b2e6f696af52b3d1da13b51b22502737ade0e1534387440426158079090a1c74 - 4.46% (3.81 MB)

[#001] sha256:301e6ab723beb0fd5b46f7468e963773b55f6e283e67634db7747606a417457f - 0.0% (117 Bytes)

[#002] sha256:0da0284326234a2861783237fcd88c7e575b9e60d0bec5252d02d4c475d1e8f0 - 65.83% (56.2 MB)

[#003] sha256:572d88161dc675074578e6f59aa4efc7499bad670a03c9dd6452cca8567f7528 - 0.0% (253 Bytes)

[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#005] sha256:8e8778f349a5c805234718e48cb94c8b5b124bd69fa98c20b27306d3960bca2d - 0.0% (1021 Bytes)

[#006] sha256:f2caef3f5b1560d82dcf00348bbcfe0ed9d35995fb602c1eda4a467bb6d248d2 - 29.71% (25.4 MB)

[#007] sha256:b470bbcfd1ef0948481c75ff97527e5661a997d38e9120711fe4abf4b0c98a32 - 0.0% (842 Bytes)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)


History
2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-20250108-aarch64.tar.gz / # buildkit

2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm64

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-24 20:28:22 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c echo "🔍 Build args: INSTALL_FFMPEG=$INSTALL_FFMPEG, INSTALL_ARIA2=$INSTALL_ARIA2" && apk update && apk upgrade --no-cache && apk add --no-cache bash ca-certificates su-exec tzdata runit && if [ "$INSTALL_FFMPEG" = "true" ]; then echo "📦 Installing FFmpeg..." && apk add --no-cache ffmpeg; else echo "⏭️ Skipping FFmpeg installation"; fi && if [ "$INSTALL_ARIA2" = "true" ]; then echo "📦 Installing Aria2..." && apk add --no-cache curl aria2 && mkdir -p /opt/aria2/.aria2 && curl -fsSL --retry 3 https://codeload.github.com/P3TERX/aria2.conf/tar.gz/refs/heads/master -o /tmp/aria-conf.tar.gz && tar -zxvf /tmp/aria-conf.tar.gz -C /opt/aria2/.aria2 --strip-components=1 && rm -f /tmp/aria-conf.tar.gz && sed -i 's|rpc-secret|#rpc-secret|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/script.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/script.conf && mkdir -p /opt/service/stop/aria2/log && echo '#!/bin/sh' > /opt/service/stop/aria2/run && echo 'exec 2>&1' >> /opt/service/stop/aria2/run && echo 'exec aria2c --enable-rpc --rpc-allow-origin-all --conf-path=/opt/aria2/.aria2/aria2.conf' >> /opt/service/stop/aria2/run && echo '#!/bin/sh' > /opt/service/stop/aria2/log/run && echo 'mkdir -p /opt/openlist/data/log/aria2 2>/dev/null' >> /opt/service/stop/aria2/log/run && echo 'exec svlogd /opt/openlist/data/log/aria2' >> /opt/service/stop/aria2/log/run && chmod +x /opt/service/stop/aria2/run /opt/service/stop/aria2/log/run && touch /opt/aria2/.aria2/aria2.session && (cd /opt/aria2/.aria2 && ./tracker.sh && echo "✅ Tracker update completed successfully" || echo "⚠️ Tracker update failed, continuing..."); else echo "⏭️ Skipping Aria2 installation"; fi && rm -rf /var/cache/apk/* # buildkit

2025-11-24 20:28:22 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c mkdir -p /opt/service/start && chmod 777 /opt/service/start && mkdir -p /opt/service/stop/openlist && echo '#!/bin/sh' > /opt/service/stop/openlist/run && echo 'exec 2>&1' >> /opt/service/stop/openlist/run && echo 'cd /opt/openlist' >> /opt/service/stop/openlist/run && echo 'exec ./openlist server --no-prefix' >> /opt/service/stop/openlist/run && chmod +x /opt/service/stop/openlist/run # buildkit

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm64

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-25 11:57:19 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c addgroup -g ${GID} ${USER} && adduser -D -u ${UID} -G ${USER} ${USER} && mkdir -p /opt/openlist/data # buildkit

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 /build/linux/arm64/openlist ./ # buildkit

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

USER openlist

2025-11-25 11:57:22 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit

2025-11-25 11:57:22 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2025-11-25 11:57:22 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-11-25 11:57:22 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2025-11-25 11:57:22 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-11-25 11:57:21 UTC

Size

82.7 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-11-25T11:57:08.155Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    72206ac9f69a15f2e142979cb92e694bafc34a3b
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.8-lite-aio

Environment
PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

RUN_ARIA2

true

UMASK

022


Layers

[#000] sha256:3a03302a4ce2ccbfcc0386fe0a8ab7f4fb110876deead3001f8d85a763562ff6 - 3.96% (3.27 MB)

[#001] sha256:19edfa87c7ffadfa71a6385c5e5dcb7ce576ce254e05852a36094210339696e0 - 0.0% (117 Bytes)

[#002] sha256:fde8e591cc62b52ed57d0c94f53ec8b8b07ea2c2fc59b1d79e591d6b3e12f882 - 64.29% (53.1 MB)

[#003] sha256:4101bf26ef8f9414750c73716f8adf19f55b6316913cab6a24c8b15625f99df7 - 0.0% (254 Bytes)

[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#005] sha256:d94fa3bcae79893eaf6f8e863246735cb986c2252059eb0c96b061ab27a6091d - 0.0% (1020 Bytes)

[#006] sha256:fb361356da136823f075dff5834573ea6e9650ad3351ba8048fefd82a934f8a7 - 31.75% (26.2 MB)

[#007] sha256:b470bbcfd1ef0948481c75ff97527e5661a997d38e9120711fe4abf4b0c98a32 - 0.0% (842 Bytes)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)


History
2025-11-01 01:42:58 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-20250108-loongarch64.tar.gz / # buildkit

2025-11-01 01:42:58 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-11-24 20:27:32 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/loong64

2025-11-24 20:27:32 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-24 20:27:32 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-11-24 20:27:32 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-24 20:27:32 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-24 20:28:08 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c echo "🔍 Build args: INSTALL_FFMPEG=$INSTALL_FFMPEG, INSTALL_ARIA2=$INSTALL_ARIA2" && apk update && apk upgrade --no-cache && apk add --no-cache bash ca-certificates su-exec tzdata runit && if [ "$INSTALL_FFMPEG" = "true" ]; then echo "📦 Installing FFmpeg..." && apk add --no-cache ffmpeg; else echo "⏭️ Skipping FFmpeg installation"; fi && if [ "$INSTALL_ARIA2" = "true" ]; then echo "📦 Installing Aria2..." && apk add --no-cache curl aria2 && mkdir -p /opt/aria2/.aria2 && curl -fsSL --retry 3 https://codeload.github.com/P3TERX/aria2.conf/tar.gz/refs/heads/master -o /tmp/aria-conf.tar.gz && tar -zxvf /tmp/aria-conf.tar.gz -C /opt/aria2/.aria2 --strip-components=1 && rm -f /tmp/aria-conf.tar.gz && sed -i 's|rpc-secret|#rpc-secret|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/script.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/script.conf && mkdir -p /opt/service/stop/aria2/log && echo '#!/bin/sh' > /opt/service/stop/aria2/run && echo 'exec 2>&1' >> /opt/service/stop/aria2/run && echo 'exec aria2c --enable-rpc --rpc-allow-origin-all --conf-path=/opt/aria2/.aria2/aria2.conf' >> /opt/service/stop/aria2/run && echo '#!/bin/sh' > /opt/service/stop/aria2/log/run && echo 'mkdir -p /opt/openlist/data/log/aria2 2>/dev/null' >> /opt/service/stop/aria2/log/run && echo 'exec svlogd /opt/openlist/data/log/aria2' >> /opt/service/stop/aria2/log/run && chmod +x /opt/service/stop/aria2/run /opt/service/stop/aria2/log/run && touch /opt/aria2/.aria2/aria2.session && (cd /opt/aria2/.aria2 && ./tracker.sh && echo "✅ Tracker update completed successfully" || echo "⚠️ Tracker update failed, continuing..."); else echo "⏭️ Skipping Aria2 installation"; fi && rm -rf /var/cache/apk/* # buildkit

2025-11-24 20:28:08 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c mkdir -p /opt/service/start && chmod 777 /opt/service/start && mkdir -p /opt/service/stop/openlist && echo '#!/bin/sh' > /opt/service/stop/openlist/run && echo 'exec 2>&1' >> /opt/service/stop/openlist/run && echo 'cd /opt/openlist' >> /opt/service/stop/openlist/run && echo 'exec ./openlist server --no-prefix' >> /opt/service/stop/openlist/run && chmod +x /opt/service/stop/openlist/run # buildkit

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/loong64

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c addgroup -g ${GID} ${USER} && adduser -D -u ${UID} -G ${USER} ${USER} && mkdir -p /opt/openlist/data # buildkit

2025-11-25 11:57:19 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 /build/linux/loong64/openlist ./ # buildkit

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

USER openlist

2025-11-25 11:57:21 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit

2025-11-25 11:57:21 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2025-11-25 11:57:21 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-11-25 11:57:21 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2025-11-25 11:57:21 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-11-25 11:57:22 UTC

Size

88.1 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-11-25T11:57:08.155Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    72206ac9f69a15f2e142979cb92e694bafc34a3b
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.8-lite-aio

Environment
PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

RUN_ARIA2

true

UMASK

022


Layers

[#000] sha256:d8b56143a99f4917d30da7e1171daf3971c7cf24b2ef66aad7b01f201494ec66 - 3.87% (3.41 MB)

[#001] sha256:301e6ab723beb0fd5b46f7468e963773b55f6e283e67634db7747606a417457f - 0.0% (117 Bytes)

[#002] sha256:47cb93ab3f88c6f26c2ca3793e93a7177def6e266265f770d934b67b2bd27741 - 67.05% (59 MB)

[#003] sha256:37d86218137fbfc59a046462a0205632a54b611129dc1c9e1a279f87fc775909 - 0.0% (253 Bytes)

[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#005] sha256:7e5df32e9a0512f9ec98423990750ce3e09d03020dc4a06d4b3ab4487c678994 - 0.0% (1020 Bytes)

[#006] sha256:8a8249927ac4f9614f916f5a7856d50109b5ef99bb36fedb616a22200311f6e5 - 29.07% (25.6 MB)

[#007] sha256:b470bbcfd1ef0948481c75ff97527e5661a997d38e9120711fe4abf4b0c98a32 - 0.0% (842 Bytes)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)


History
2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-20250108-ppc64le.tar.gz / # buildkit

2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/ppc64le

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-24 20:28:27 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c echo "🔍 Build args: INSTALL_FFMPEG=$INSTALL_FFMPEG, INSTALL_ARIA2=$INSTALL_ARIA2" && apk update && apk upgrade --no-cache && apk add --no-cache bash ca-certificates su-exec tzdata runit && if [ "$INSTALL_FFMPEG" = "true" ]; then echo "📦 Installing FFmpeg..." && apk add --no-cache ffmpeg; else echo "⏭️ Skipping FFmpeg installation"; fi && if [ "$INSTALL_ARIA2" = "true" ]; then echo "📦 Installing Aria2..." && apk add --no-cache curl aria2 && mkdir -p /opt/aria2/.aria2 && curl -fsSL --retry 3 https://codeload.github.com/P3TERX/aria2.conf/tar.gz/refs/heads/master -o /tmp/aria-conf.tar.gz && tar -zxvf /tmp/aria-conf.tar.gz -C /opt/aria2/.aria2 --strip-components=1 && rm -f /tmp/aria-conf.tar.gz && sed -i 's|rpc-secret|#rpc-secret|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/script.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/script.conf && mkdir -p /opt/service/stop/aria2/log && echo '#!/bin/sh' > /opt/service/stop/aria2/run && echo 'exec 2>&1' >> /opt/service/stop/aria2/run && echo 'exec aria2c --enable-rpc --rpc-allow-origin-all --conf-path=/opt/aria2/.aria2/aria2.conf' >> /opt/service/stop/aria2/run && echo '#!/bin/sh' > /opt/service/stop/aria2/log/run && echo 'mkdir -p /opt/openlist/data/log/aria2 2>/dev/null' >> /opt/service/stop/aria2/log/run && echo 'exec svlogd /opt/openlist/data/log/aria2' >> /opt/service/stop/aria2/log/run && chmod +x /opt/service/stop/aria2/run /opt/service/stop/aria2/log/run && touch /opt/aria2/.aria2/aria2.session && (cd /opt/aria2/.aria2 && ./tracker.sh && echo "✅ Tracker update completed successfully" || echo "⚠️ Tracker update failed, continuing..."); else echo "⏭️ Skipping Aria2 installation"; fi && rm -rf /var/cache/apk/* # buildkit

2025-11-24 20:28:27 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c mkdir -p /opt/service/start && chmod 777 /opt/service/start && mkdir -p /opt/service/stop/openlist && echo '#!/bin/sh' > /opt/service/stop/openlist/run && echo 'exec 2>&1' >> /opt/service/stop/openlist/run && echo 'cd /opt/openlist' >> /opt/service/stop/openlist/run && echo 'exec ./openlist server --no-prefix' >> /opt/service/stop/openlist/run && chmod +x /opt/service/stop/openlist/run # buildkit

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/ppc64le

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-25 11:57:19 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c addgroup -g ${GID} ${USER} && adduser -D -u ${UID} -G ${USER} ${USER} && mkdir -p /opt/openlist/data # buildkit

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 /build/linux/ppc64le/openlist ./ # buildkit

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

USER openlist

2025-11-25 11:57:22 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit

2025-11-25 11:57:22 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2025-11-25 11:57:22 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-11-25 11:57:22 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2025-11-25 11:57:22 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-11-25 11:57:20 UTC

Size

80 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-11-25T11:57:08.155Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    72206ac9f69a15f2e142979cb92e694bafc34a3b
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.8-lite-aio

Environment
PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

RUN_ARIA2

true

UMASK

022


Layers

[#000] sha256:1ce3d2c30285d18ddfb483c62335e2dd9abc74922e2278f333df42c8c25752a9 - 3.99% (3.19 MB)

[#001] sha256:3036784be14c631fd57fe16eb6a72bdd3537504c4e793571030d655026696997 - 0.0% (115 Bytes)

[#002] sha256:9fba344ecc1ded9d1a633ba3cbd36621907374a8bdb62144f5874b2f13d7789a - 62.97% (50.4 MB)

[#003] sha256:37cb683a306a5c78c57b929454b10c458642fe825734f3d68c32e21d7bfa88aa - 0.0% (252 Bytes)

[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#005] sha256:94bbf29b51770a05c057a0909758728a8841bc7e0feb04d6b84a9ee55338df0e - 0.0% (1016 Bytes)

[#006] sha256:a09440dc1c3e321c4db6893e0d441c5b62d8710ccdde4ff8a5508f37945ac42c - 33.03% (26.4 MB)

[#007] sha256:b470bbcfd1ef0948481c75ff97527e5661a997d38e9120711fe4abf4b0c98a32 - 0.0% (842 Bytes)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)


History
2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-20250108-riscv64.tar.gz / # buildkit

2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-11-24 20:27:44 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/riscv64

2025-11-24 20:27:44 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-24 20:27:44 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-11-24 20:27:44 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-24 20:27:44 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-24 20:28:25 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c echo "🔍 Build args: INSTALL_FFMPEG=$INSTALL_FFMPEG, INSTALL_ARIA2=$INSTALL_ARIA2" && apk update && apk upgrade --no-cache && apk add --no-cache bash ca-certificates su-exec tzdata runit && if [ "$INSTALL_FFMPEG" = "true" ]; then echo "📦 Installing FFmpeg..." && apk add --no-cache ffmpeg; else echo "⏭️ Skipping FFmpeg installation"; fi && if [ "$INSTALL_ARIA2" = "true" ]; then echo "📦 Installing Aria2..." && apk add --no-cache curl aria2 && mkdir -p /opt/aria2/.aria2 && curl -fsSL --retry 3 https://codeload.github.com/P3TERX/aria2.conf/tar.gz/refs/heads/master -o /tmp/aria-conf.tar.gz && tar -zxvf /tmp/aria-conf.tar.gz -C /opt/aria2/.aria2 --strip-components=1 && rm -f /tmp/aria-conf.tar.gz && sed -i 's|rpc-secret|#rpc-secret|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/script.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/script.conf && mkdir -p /opt/service/stop/aria2/log && echo '#!/bin/sh' > /opt/service/stop/aria2/run && echo 'exec 2>&1' >> /opt/service/stop/aria2/run && echo 'exec aria2c --enable-rpc --rpc-allow-origin-all --conf-path=/opt/aria2/.aria2/aria2.conf' >> /opt/service/stop/aria2/run && echo '#!/bin/sh' > /opt/service/stop/aria2/log/run && echo 'mkdir -p /opt/openlist/data/log/aria2 2>/dev/null' >> /opt/service/stop/aria2/log/run && echo 'exec svlogd /opt/openlist/data/log/aria2' >> /opt/service/stop/aria2/log/run && chmod +x /opt/service/stop/aria2/run /opt/service/stop/aria2/log/run && touch /opt/aria2/.aria2/aria2.session && (cd /opt/aria2/.aria2 && ./tracker.sh && echo "✅ Tracker update completed successfully" || echo "⚠️ Tracker update failed, continuing..."); else echo "⏭️ Skipping Aria2 installation"; fi && rm -rf /var/cache/apk/* # buildkit

2025-11-24 20:28:26 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c mkdir -p /opt/service/start && chmod 777 /opt/service/start && mkdir -p /opt/service/stop/openlist && echo '#!/bin/sh' > /opt/service/stop/openlist/run && echo 'exec 2>&1' >> /opt/service/stop/openlist/run && echo 'cd /opt/openlist' >> /opt/service/stop/openlist/run && echo 'exec ./openlist server --no-prefix' >> /opt/service/stop/openlist/run && chmod +x /opt/service/stop/openlist/run # buildkit

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/riscv64

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c addgroup -g ${GID} ${USER} && adduser -D -u ${UID} -G ${USER} ${USER} && mkdir -p /opt/openlist/data # buildkit

2025-11-25 11:57:18 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 /build/linux/riscv64/openlist ./ # buildkit

2025-11-25 11:57:19 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-11-25 11:57:19 UTC (buildkit.dockerfile.v0)

USER openlist

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2025-11-25 11:57:20 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete