Namespace
openlistteam
Image / Tag
openlist:beta-aio
Content Digest
sha256:a7be00c329a3171bb511bdb98f0ed11f0d9ea3ec85699dd64cdc68f997fd1eaf
Details
Created

2026-04-03 08:01:32 UTC

Size

108 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-04-03T08:01:04.271Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    12c9bdbd568bca15b6963433050e8d3499b262be
  • 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
    beta-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

[#000] sha256:975c62035c52c03c139ee69c001e1807f233d49d9db677ee7bda7067775ddb81 - 3.25% (3.52 MB)

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

[#002] sha256:83ab662b6e04bf166ee3113fd668d394c4aa7bd27ea27c4279e5f03184421ffb - 48.83% (52.9 MB)

[#003] sha256:bcec0e065b8b19163d8ef9ace565686f30cf4243100ccfd5e52b771fd1724bd5 - 0.0% (250 Bytes)

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

[#005] sha256:8238ae629b98b8950910f3892824c7b199599e977f93b5a396c64c7e483b9afa - 0.0% (1003 Bytes)

[#006] sha256:1c87fbcd80eb1f96e3d22ec2955714ce67ff678133a8960d5dd47898a67b906c - 47.92% (51.9 MB)

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

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


History
2026-01-28 01:17:57 UTC (buildkit.dockerfile.v0)

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

2026-01-28 01:17:57 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/386

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-02 20:33:32 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

2026-04-02 20:33:32 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

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/386

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-03 08:01:31 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

2026-04-03 08:01:32 UTC (buildkit.dockerfile.v0)

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

2026-04-03 08:01:32 UTC (buildkit.dockerfile.v0)

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

2026-04-03 08:01:32 UTC (buildkit.dockerfile.v0)

USER openlist

2026-04-03 08:01:32 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

2026-04-03 08:01:32 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2026-04-03 08:01:32 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-04-03 08:01:32 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-04-03 08:01:32 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2026-04-03 08:01:32 UTC

Size

116 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-04-03T08:01:04.271Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    12c9bdbd568bca15b6963433050e8d3499b262be
  • 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
    beta-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

[#000] sha256:782e45fa39e33e126e833b143dfe1e0974da9fce6093625a4645d4c16cb9fc0c - 3.16% (3.68 MB)

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

[#002] sha256:1ebef2ea2b7a7ded6c4502de456cb533e268edd4fdc54a175e1bb8f2a65ee987 - 51.06% (59.4 MB)

[#003] sha256:50297fb2c7638fd172356e942caaa3323b9943e62293e0344c845f1a1c20d63d - 0.0% (250 Bytes)

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

[#005] sha256:b231f81626d2d5c97150e9210b6bc782e47cd701222513d1dc90fe3801b2981d - 0.0% (1000 Bytes)

[#006] sha256:218c7c5e262456c047ce48e6fc94e0772caedf3dbf4219b6dd31e0cd7ff2ffdc - 45.78% (53.3 MB)

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

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


History
2026-01-28 01:17:51 UTC (buildkit.dockerfile.v0)

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

2026-01-28 01:17:51 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/amd64

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-02 20:33:30 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

2026-04-02 20:33:30 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

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/amd64

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-03 08:01:31 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

2026-04-03 08:01:32 UTC (buildkit.dockerfile.v0)

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

2026-04-03 08:01:32 UTC (buildkit.dockerfile.v0)

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

2026-04-03 08:01:32 UTC (buildkit.dockerfile.v0)

USER openlist

2026-04-03 08:01:32 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

2026-04-03 08:01:32 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2026-04-03 08:01:32 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-04-03 08:01:32 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-04-03 08:01:32 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2026-04-03 08:01:36 UTC

Size

103 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-04-03T08:01:04.271Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    12c9bdbd568bca15b6963433050e8d3499b262be
  • 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
    beta-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

[#000] sha256:2d51d8438f0b9bb43ed8a6e1a9a0e295651e4608575e7acef1b9076c5a2069df - 3.32% (3.4 MB)

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

[#002] sha256:a219fa9b3e575c603ff4c2fe071ce7b3e8363f659155d1d572c5eceb74cb10b5 - 45.96% (47.2 MB)

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

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

[#005] sha256:32bfd980d06722c48cf769944e3c172231e122df4f486a1582d113d0f035a370 - 0.0% (1000 Bytes)

[#006] sha256:822e2e15ba90b7b71bfae970da0ec52e1fa37c93b8550b19649e97ef8597abd2 - 50.72% (52.1 MB)

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

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


History
2026-01-28 01:17:40 UTC (buildkit.dockerfile.v0)

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

2026-01-28 01:17:40 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v6

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-02 20:33:59 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

2026-04-02 20:33:59 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

2026-04-03 08:01:34 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-03 08:01:34 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v6

2026-04-03 08:01:34 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-04-03 08:01:34 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-04-03 08:01:34 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2026-04-03 08:01:34 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2026-04-03 08:01:34 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2026-04-03 08:01:34 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-03 08:01:34 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

2026-04-03 08:01:35 UTC (buildkit.dockerfile.v0)

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

2026-04-03 08:01:35 UTC (buildkit.dockerfile.v0)

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

2026-04-03 08:01:35 UTC (buildkit.dockerfile.v0)

USER openlist

2026-04-03 08:01:36 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

2026-04-03 08:01:36 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2026-04-03 08:01:36 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-04-03 08:01:36 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-04-03 08:01:36 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2026-04-03 08:01:39 UTC

Size

100 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-04-03T08:01:04.271Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    12c9bdbd568bca15b6963433050e8d3499b262be
  • 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
    beta-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

[#000] sha256:0e582a9632f2b97cd452b53153880f1689c3400780444b42640f7d1dd9cffe3f - 3.12% (3.13 MB)

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

[#002] sha256:2693a46adc14e4325f7843784b96033af5fdca4b2dbc46cafffd003a9f3106ec - 44.93% (45 MB)

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

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

[#005] sha256:151b601eea09a8792d4d31a8ca0589ff91e85fdc10845a23c546e5ff7e814d53 - 0.0% (1001 Bytes)

[#006] sha256:77b3c4b92abdbceb524e45d99f1a8a24c5cadf2bee87444917b3e850b04bc3f0 - 51.95% (52 MB)

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

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


History
2026-01-28 01:17:40 UTC (buildkit.dockerfile.v0)

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

2026-01-28 01:17:40 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v7

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-02 20:33:56 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

2026-04-02 20:33:56 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

2026-04-03 08:01:37 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-03 08:01:37 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v7

2026-04-03 08:01:37 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-04-03 08:01:37 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-04-03 08:01:37 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2026-04-03 08:01:37 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2026-04-03 08:01:37 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2026-04-03 08:01:37 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-03 08:01:37 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

2026-04-03 08:01:38 UTC (buildkit.dockerfile.v0)

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

2026-04-03 08:01:38 UTC (buildkit.dockerfile.v0)

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

2026-04-03 08:01:38 UTC (buildkit.dockerfile.v0)

USER openlist

2026-04-03 08:01:39 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

2026-04-03 08:01:39 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2026-04-03 08:01:39 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-04-03 08:01:39 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-04-03 08:01:39 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2026-04-03 08:01:35 UTC

Size

111 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-04-03T08:01:04.271Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    12c9bdbd568bca15b6963433050e8d3499b262be
  • 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
    beta-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

[#000] sha256:20158f18ba671f0bb300620f1a8427c9359a60a2a718fda83d2d973470c0a428 - 3.59% (4 MB)

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

[#002] sha256:2bbcfc6bf1a25bb52c0c747e581662026469f2ff93d4011467d034f49a17bfec - 50.72% (56.5 MB)

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

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

[#005] sha256:bd07b15b89ed9d7d587992015c9708329b89aaf5de6252d19639fc69c8823482 - 0.0% (1003 Bytes)

[#006] sha256:db8500617d9938145be513e9ab39c3982d3ea34013a7549f2f75c887938aed04 - 45.68% (50.9 MB)

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

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


History
2026-01-28 01:17:41 UTC (buildkit.dockerfile.v0)

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

2026-01-28 01:17:41 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm64

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-02 20:33:59 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

2026-04-02 20:34:00 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

2026-04-03 08:01:27 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-03 08:01:27 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm64

2026-04-03 08:01:27 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-04-03 08:01:27 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-04-03 08:01:27 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2026-04-03 08:01:27 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2026-04-03 08:01:27 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2026-04-03 08:01:27 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-03 08:01:27 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

2026-04-03 08:01:31 UTC (buildkit.dockerfile.v0)

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

2026-04-03 08:01:32 UTC (buildkit.dockerfile.v0)

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

2026-04-03 08:01:32 UTC (buildkit.dockerfile.v0)

USER openlist

2026-04-03 08:01:35 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

2026-04-03 08:01:35 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2026-04-03 08:01:35 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-04-03 08:01:35 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-04-03 08:01:35 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2026-04-03 08:01:34 UTC

Size

108 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-04-03T08:01:04.271Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    12c9bdbd568bca15b6963433050e8d3499b262be
  • 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
    beta-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

[#000] sha256:72c0c3b276c5005430272f521be633acaf2d97d005b67fbaed9aad3f5795f0b7 - 3.15% (3.4 MB)

[#001] sha256:698a165c9279ba2ab853b6e41f04594c3593d105012cc982458cd3241cd78c29 - 0.0% (117 Bytes)

[#002] sha256:91bcde9ff0489ef86ff3fa5fed43ab9aa6cd4bd149667729fbcdc72e4fb1105e - 49.5% (53.4 MB)

[#003] sha256:ca2b6cc95f4a248e6cc539fdd6fa0a6f2fb17d23631cfe60ee2d57644793ca30 - 0.0% (250 Bytes)

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

[#005] sha256:7e3f85786b79fed24457bc54b33506d92aeea0cf06cacdb861fdf9e7a7814069 - 0.0% (1000 Bytes)

[#006] sha256:b194d51be35cc6d5430a2083a7fb35d4febb55fd856586f63fe55602a5c23f44 - 47.35% (51.1 MB)

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

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


History
2026-04-01 02:44:38 UTC (buildkit.dockerfile.v0)

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

2026-04-01 02:44:38 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2026-04-02 20:33:14 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/loong64

2026-04-02 20:33:14 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-04-02 20:33:14 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-04-02 20:33:14 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-02 20:33:14 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-02 20:33:51 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

2026-04-02 20:33:51 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

2026-04-03 08:01:26 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-03 08:01:26 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/loong64

2026-04-03 08:01:26 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-04-03 08:01:26 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-04-03 08:01:26 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2026-04-03 08:01:26 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2026-04-03 08:01:26 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2026-04-03 08:01:26 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-03 08:01:27 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

2026-04-03 08:01:31 UTC (buildkit.dockerfile.v0)

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

2026-04-03 08:01:32 UTC (buildkit.dockerfile.v0)

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

2026-04-03 08:01:32 UTC (buildkit.dockerfile.v0)

USER openlist

2026-04-03 08:01:34 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

2026-04-03 08:01:34 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2026-04-03 08:01:34 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-04-03 08:01:34 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-04-03 08:01:34 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2026-04-03 08:01:34 UTC

Size

114 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-04-03T08:01:04.271Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    12c9bdbd568bca15b6963433050e8d3499b262be
  • 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
    beta-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

[#000] sha256:3f635b7373f04c15ef2a2822d4aab13aa85f50e5da78f48693dc7cfb9c57abbe - 3.2% (3.65 MB)

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

[#002] sha256:9994188abcde5968dbeec3788939b66cbd659663e6966c122acc11ebf7c38c1d - 52.11% (59.4 MB)

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

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

[#005] sha256:eeb903fc772168050674659e7cdddd3ecdfb3aa04d00d2b5a6c1fcf41251a6c1 - 0.0% (1001 Bytes)

[#006] sha256:0cbb3e0483389581e6c874572bb916f8ead9587c594c05a87e8397513d219944 - 44.68% (50.9 MB)

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

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


History
2026-01-28 01:17:01 UTC (buildkit.dockerfile.v0)

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

2026-01-28 01:17:01 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/ppc64le

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-02 20:34:03 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

2026-04-02 20:34:03 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

2026-04-03 08:01:27 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-03 08:01:27 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/ppc64le

2026-04-03 08:01:27 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-04-03 08:01:27 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-04-03 08:01:27 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2026-04-03 08:01:27 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2026-04-03 08:01:27 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2026-04-03 08:01:27 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-03 08:01:27 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

2026-04-03 08:01:31 UTC (buildkit.dockerfile.v0)

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

2026-04-03 08:01:31 UTC (buildkit.dockerfile.v0)

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

2026-04-03 08:01:31 UTC (buildkit.dockerfile.v0)

USER openlist

2026-04-03 08:01:34 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

2026-04-03 08:01:34 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2026-04-03 08:01:34 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-04-03 08:01:34 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-04-03 08:01:34 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2026-04-03 08:01:34 UTC

Size

106 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-04-03T08:01:04.271Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    12c9bdbd568bca15b6963433050e8d3499b262be
  • 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
    beta-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

[#000] sha256:022c766c9404d89d4041ad5c42533be4c5a330984f2fe0dfcfec79fdc3fab497 - 3.22% (3.42 MB)

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

[#002] sha256:747f5a7ad2062b0b497a41d24b0d907223d0ba97c8aa09358eb905c3e7f7afe7 - 47.74% (50.7 MB)

[#003] sha256:30ad302dcb8bd22a6220df89a5beb54e8a689dce2396dfc57feedfe946119689 - 0.0% (253 Bytes)

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

[#005] sha256:9aedb33af2fca9bd8e9a13d2e43c939b2fef02a01c762aae1d7c58975a6d0cb1 - 0.0% (1004 Bytes)

[#006] sha256:b05b29f0adb7cc2cabeff67fc2190982a0a7ced41244e5073151a36f98a00dfd - 49.04% (52 MB)

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

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


History
2026-01-28 03:45:10 UTC (buildkit.dockerfile.v0)

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

2026-01-28 03:45:10 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/riscv64

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-02 20:33:18 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-02 20:34:00 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

2026-04-02 20:34:00 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

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/riscv64

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2026-04-03 08:01:30 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-03 08:01:31 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

2026-04-03 08:01:32 UTC (buildkit.dockerfile.v0)

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

2026-04-03 08:01:32 UTC (buildkit.dockerfile.v0)

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

2026-04-03 08:01:32 UTC (buildkit.dockerfile.v0)

USER openlist

2026-04-03 08:01:34 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

2026-04-03 08:01:34 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2026-04-03 08:01:34 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-04-03 08:01:34 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-04-03 08:01:34 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