Namespace
openlistteam
Image / Tag
openlist:beta
Content Digest
sha256:7fea5f1b8f2c9def3136cc3180f7b11de0f776290141978439a83bc59af044ed
Details
Created

2026-04-09 01:45:57 UTC

Size

59.7 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-04-09T01:45:42.499Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    da26e72beeed608c4d4bf3add1e6b801fba32bae
  • 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

Environment
PATH

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

RUN_ARIA2

false

UMASK

022


Layers

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

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

[#002] sha256:2300fa59173118415508f32427d99fd70bd007e95d44036b8bff51ad55553ab6 - 7.0% (4.18 MB)

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

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

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

[#006] sha256:e764d6f10832a7d2973d88aacb951cb5fcf575687138a6de94bdb284a1e2dc2f - 87.11% (52 MB)

[#007] sha256:f11b86a42cadffc16c5bba59590feb09c55e356d1d47ec0597945c845a94bd29 - 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-08 20:40:14 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/386

2026-04-08 20:40:14 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2026-04-08 20:40:14 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2026-04-08 20:40:14 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-08 20:40:14 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-08 20:40:20 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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-08 20:40:20 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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-09 01:45:47 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/386

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=false INSTALL_ARIA2=false 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-09 01:45:57 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:45:57 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:45:57 UTC (buildkit.dockerfile.v0)

USER openlist

2026-04-09 01:45:57 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:45:57 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2026-04-09 01:45:57 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-04-09 01:45:57 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-04-09 01:45:57 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2026-04-09 01:45:58 UTC

Size

61.4 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-04-09T01:45:42.499Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    da26e72beeed608c4d4bf3add1e6b801fba32bae
  • 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

Environment
PATH

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

RUN_ARIA2

false

UMASK

022


Layers

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

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

[#002] sha256:a33c87979a1e28232d74a3886679d05c970295d92f7f72341b9ad86a8a6e3621 - 7.05% (4.33 MB)

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

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

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

[#006] sha256:4f6a26fa62c28edc2b3ce8323d97db8ef70f3e4a29e834fd4814a00ce8510f5b - 86.96% (53.4 MB)

[#007] sha256:f11b86a42cadffc16c5bba59590feb09c55e356d1d47ec0597945c845a94bd29 - 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-08 20:40:14 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/amd64

2026-04-08 20:40:14 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2026-04-08 20:40:14 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2026-04-08 20:40:14 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-08 20:40:14 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-08 20:40:19 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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-08 20:40:19 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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-09 01:45:47 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/amd64

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=false INSTALL_ARIA2=false 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-09 01:45:57 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:45:57 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:45:57 UTC (buildkit.dockerfile.v0)

USER openlist

2026-04-09 01:45:58 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:45:58 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2026-04-09 01:45:58 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-04-09 01:45:58 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-04-09 01:45:58 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2026-04-09 01:46:00 UTC

Size

59.6 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-04-09T01:45:42.499Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    da26e72beeed608c4d4bf3add1e6b801fba32bae
  • 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

Environment
PATH

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

RUN_ARIA2

false

UMASK

022


Layers

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

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

[#002] sha256:289f37e99e6b9b236f5479c85bf16251db71b323e73d594d3dec8c0f086cc139 - 6.66% (3.97 MB)

[#003] sha256:f80eee8af14333fc0d4eea6413d11c6adfeb85a6b4075ce5b6c41c552aee6d54 - 0.0% (249 Bytes)

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

[#005] sha256:6cca165b012c8de3fc2f25daa94b694c3e6e99a04dacd672a584f771866f3587 - 0.0% (999 Bytes)

[#006] sha256:1111ab12c8d6210e0d2a356ac8ff7876756e2e7fc4d0c1609d2d39653a8a5ccd - 87.62% (52.2 MB)

[#007] sha256:f11b86a42cadffc16c5bba59590feb09c55e356d1d47ec0597945c845a94bd29 - 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-08 20:40:14 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v6

2026-04-08 20:40:14 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2026-04-08 20:40:14 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2026-04-08 20:40:14 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-08 20:40:14 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-08 20:40:32 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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-08 20:40:32 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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-09 01:45:46 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v6

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=false INSTALL_ARIA2=false 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-09 01:45:57 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:45:57 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:45:57 UTC (buildkit.dockerfile.v0)

USER openlist

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2026-04-09 01:46:00 UTC

Size

59 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-04-09T01:45:42.499Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    da26e72beeed608c4d4bf3add1e6b801fba32bae
  • 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

Environment
PATH

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

RUN_ARIA2

false

UMASK

022


Layers

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

[#001] sha256:9e116afdb4d4d4a28563aa03568d94a0b4ea37befbf3f389c54a3ca9ca66fb98 - 0.0% (115 Bytes)

[#002] sha256:37fccf009fb465d396347cff41dbc672a0416fc7cf1a6aa32363ae3578a6600b - 6.25% (3.69 MB)

[#003] sha256:f80eee8af14333fc0d4eea6413d11c6adfeb85a6b4075ce5b6c41c552aee6d54 - 0.0% (249 Bytes)

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

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

[#006] sha256:cc8ae042ab642d524f055d213d27830c546712d9843196ea0a9300814d70ec26 - 88.44% (52.2 MB)

[#007] sha256:f11b86a42cadffc16c5bba59590feb09c55e356d1d47ec0597945c845a94bd29 - 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-08 20:40:13 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v7

2026-04-08 20:40:13 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2026-04-08 20:40:13 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2026-04-08 20:40:13 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-08 20:40:13 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-08 20:40:32 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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-08 20:40:32 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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-09 01:45:46 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v7

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=false INSTALL_ARIA2=false 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-09 01:45:57 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:45:57 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:45:57 UTC (buildkit.dockerfile.v0)

USER openlist

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2026-04-09 01:46:00 UTC

Size

59.7 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-04-09T01:45:42.499Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    da26e72beeed608c4d4bf3add1e6b801fba32bae
  • 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

Environment
PATH

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

RUN_ARIA2

false

UMASK

022


Layers

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

[#001] sha256:9e116afdb4d4d4a28563aa03568d94a0b4ea37befbf3f389c54a3ca9ca66fb98 - 0.0% (115 Bytes)

[#002] sha256:829c42611973cc79334ad9b2b23c59446702815f7c94e3d5f402b8a58e8dd65a - 7.91% (4.72 MB)

[#003] sha256:f80eee8af14333fc0d4eea6413d11c6adfeb85a6b4075ce5b6c41c552aee6d54 - 0.0% (249 Bytes)

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

[#005] sha256:703877d96adee5786987d0f154e9c06628fef26a22d1987c2f3bbebbea89a778 - 0.0% (1002 Bytes)

[#006] sha256:e64f891ffda9fd88da5d8be092725508a4925ba95ef57fa70987b14c9c573d53 - 85.39% (51 MB)

[#007] sha256:f11b86a42cadffc16c5bba59590feb09c55e356d1d47ec0597945c845a94bd29 - 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-08 20:40:13 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm64

2026-04-08 20:40:13 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2026-04-08 20:40:13 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2026-04-08 20:40:13 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-08 20:40:13 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-08 20:40:32 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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-08 20:40:32 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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-09 01:45:47 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm64

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-09 01:45:48 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=false INSTALL_ARIA2=false 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-09 01:45:57 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:45:57 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:45:57 UTC (buildkit.dockerfile.v0)

USER openlist

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2026-04-09 01:46:00 UTC

Size

58.7 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-04-09T01:45:42.499Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    da26e72beeed608c4d4bf3add1e6b801fba32bae
  • 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

Environment
PATH

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

RUN_ARIA2

false

UMASK

022


Layers

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

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

[#002] sha256:e11199d68536a0a2f01ec0aeba2a2d49b02915829a422820950fd23b5600c031 - 7.0% (4.11 MB)

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

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

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

[#006] sha256:7baad7c92e94ba8d8f4f944f5dcdd15d0ba2a3953c25041f0a42839e57761ba1 - 87.22% (51.2 MB)

[#007] sha256:f11b86a42cadffc16c5bba59590feb09c55e356d1d47ec0597945c845a94bd29 - 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-08 20:40:07 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/loong64

2026-04-08 20:40:07 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2026-04-08 20:40:07 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2026-04-08 20:40:07 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-08 20:40:07 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-08 20:40:17 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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-08 20:40:17 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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-09 01:45:47 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/loong64

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-09 01:45:47 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=false INSTALL_ARIA2=false 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-09 01:45:57 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:45:57 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:45:57 UTC (buildkit.dockerfile.v0)

USER openlist

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2026-04-09 01:46:00 UTC

Size

59.1 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-04-09T01:45:42.499Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    da26e72beeed608c4d4bf3add1e6b801fba32bae
  • 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

Environment
PATH

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

RUN_ARIA2

false

UMASK

022


Layers

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

[#001] sha256:9e116afdb4d4d4a28563aa03568d94a0b4ea37befbf3f389c54a3ca9ca66fb98 - 0.0% (115 Bytes)

[#002] sha256:c69179f2bbb4a01071efc2d33c323f1a803e7df1a9265dbc011374865e171d1a - 7.42% (4.38 MB)

[#003] sha256:9496e90db474db29a53afc2b4cedd7592c9388e444adcd8ba2a3bbc26a308fa4 - 0.0% (249 Bytes)

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

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

[#006] sha256:e00109feeafb1d71322dafa97ed438e1f5a8d2445e310c88c9262e7387888957 - 86.4% (51.1 MB)

[#007] sha256:f11b86a42cadffc16c5bba59590feb09c55e356d1d47ec0597945c845a94bd29 - 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-08 20:40:13 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/ppc64le

2026-04-08 20:40:13 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2026-04-08 20:40:13 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2026-04-08 20:40:13 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-08 20:40:13 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-08 20:40:33 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=false INSTALL_ARIA2=false /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-08 20:40:33 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=false INSTALL_ARIA2=false /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-09 01:45:46 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/ppc64le

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=false INSTALL_ARIA2=false 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-09 01:45:57 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:45:57 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:45:57 UTC (buildkit.dockerfile.v0)

USER openlist

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2026-04-09 01:46:00 UTC

Size

59.6 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-04-09T01:45:42.499Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    da26e72beeed608c4d4bf3add1e6b801fba32bae
  • 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

Environment
PATH

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

RUN_ARIA2

false

UMASK

022


Layers

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

[#001] sha256:9e116afdb4d4d4a28563aa03568d94a0b4ea37befbf3f389c54a3ca9ca66fb98 - 0.0% (115 Bytes)

[#002] sha256:9ed9cead0d3e5305d82661ed20a235ce8be4f348cb8b2f41078825beb5fab1b6 - 6.8% (4.06 MB)

[#003] sha256:f80eee8af14333fc0d4eea6413d11c6adfeb85a6b4075ce5b6c41c552aee6d54 - 0.0% (249 Bytes)

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

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

[#006] sha256:2a99f06a34e5a792ecd5ef5d63e6a71b3f3d06ce6a04d9461b718f892b54093c - 87.46% (52.2 MB)

[#007] sha256:f11b86a42cadffc16c5bba59590feb09c55e356d1d47ec0597945c845a94bd29 - 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-08 20:40:13 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/riscv64

2026-04-08 20:40:13 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2026-04-08 20:40:13 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2026-04-08 20:40:13 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-08 20:40:13 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-08 20:40:32 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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-08 20:40:32 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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-09 01:45:45 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-04-09 01:45:45 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/riscv64

2026-04-09 01:45:45 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2026-04-09 01:45:45 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2026-04-09 01:45:45 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2026-04-09 01:45:45 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2026-04-09 01:45:45 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2026-04-09 01:45:45 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-04-09 01:45:46 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=false INSTALL_ARIA2=false 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-09 01:45:57 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:45:57 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:45:57 UTC (buildkit.dockerfile.v0)

USER openlist

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

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

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-04-09 01:46:00 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-04-09 01:46:00 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