Namespace
openlistteam
Image / Tag
openlist:v4.1.0-lite-aria2
Content Digest
sha256:ee48ae2e42296cdb4d93a6514e928d315a466c8543d9dfa4c53c4081818e9c01
Details
Created

2025-08-01 07:23:21 UTC

Size

41.5 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-08-01T07:23:11.874Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    a5a22e70858256013240c3046276dd044954a101
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.0-lite-aria2

Environment
PATH

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

PGID

0

PUID

0

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:f49849cbf74374629ac321a91fd0b7519f4497366cf5aadf194a7c983ff7f295 - 28.73% (11.9 MB)

[#003] sha256:c4c98ba1febc484113ad13a6967c32c6ed582af93382fa0d7fdd54d46f849db3 - 0.0% (234 Bytes)

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

[#005] sha256:e05b252dd7bf8a8962682675173eb6063a0c58f321570f84010f70525e388501 - 63.3% (26.2 MB)

[#006] sha256:91076f46e6bf6bbbca979022fae437d1ec8efb57c08be65b48bb2f13e109a752 - 0.0% (289 Bytes)

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


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

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

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

CMD ["/bin/sh"]

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/386

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-08-01 06:56:35 UTC (buildkit.dockerfile.v0)

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

2025-08-01 06:56:35 UTC (buildkit.dockerfile.v0)

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

2025-08-01 07:23:17 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/386

2025-08-01 07:23:17 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2025-08-01 07:23:17 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-08-01 07:23:17 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-08-01 07:23:17 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

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

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

COPY --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=false INSTALL_ARIA2=true /bin/sh -c /entrypoint.sh version # buildkit

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

ENV PUID=0 PGID=0 UMASK=022 RUN_ARIA2=true

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

EXPOSE map[5244/tcp:{} 5245/tcp:{}]

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-08-01 07:23:21 UTC

Size

42.8 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-08-01T07:23:11.874Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    a5a22e70858256013240c3046276dd044954a101
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.0-lite-aria2

Environment
PATH

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

PGID

0

PUID

0

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:d2ae54d4c3034a515db2fcf7b52dd6558c73601a4b3815b88c2f3ac418854308 - 27.7% (11.8 MB)

[#003] sha256:c4c98ba1febc484113ad13a6967c32c6ed582af93382fa0d7fdd54d46f849db3 - 0.0% (234 Bytes)

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

[#005] sha256:cb1e5b6b87eae20f7bb53b04af95ef1f4e21a2bd004707be9a1b304b7d19949c - 64.18% (27.5 MB)

[#006] sha256:91076f46e6bf6bbbca979022fae437d1ec8efb57c08be65b48bb2f13e109a752 - 0.0% (289 Bytes)

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


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

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

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

CMD ["/bin/sh"]

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/amd64

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-08-01 06:56:35 UTC (buildkit.dockerfile.v0)

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

2025-08-01 06:56:35 UTC (buildkit.dockerfile.v0)

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

2025-08-01 07:23:17 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/amd64

2025-08-01 07:23:17 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2025-08-01 07:23:17 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-08-01 07:23:17 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-08-01 07:23:17 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

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

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

COPY --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=false INSTALL_ARIA2=true /bin/sh -c /entrypoint.sh version # buildkit

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

ENV PUID=0 PGID=0 UMASK=022 RUN_ARIA2=true

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

EXPOSE map[5244/tcp:{} 5245/tcp:{}]

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-08-01 07:23:23 UTC

Size

40.9 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-08-01T07:23:11.874Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    a5a22e70858256013240c3046276dd044954a101
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.0-lite-aria2

Environment
PATH

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

PGID

0

PUID

0

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:729a5ca46e40616de897d94f7e756b31f5f0dd8245ed212125b3919dd6825bd6 - 27.65% (11.3 MB)

[#003] sha256:9f5ee51ac69b50be4d1336d3574a7fcb3076831551c6a8fe8e93757249bcb97b - 0.0% (234 Bytes)

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

[#005] sha256:e4b5362a099fc38904ee34f957bef782ae524fc14a07c26c5b21a68e8adb6951 - 64.49% (26.3 MB)

[#006] sha256:91076f46e6bf6bbbca979022fae437d1ec8efb57c08be65b48bb2f13e109a752 - 0.0% (289 Bytes)

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


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

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

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

CMD ["/bin/sh"]

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v6

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-08-01 06:56:53 UTC (buildkit.dockerfile.v0)

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

2025-08-01 06:56:53 UTC (buildkit.dockerfile.v0)

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

2025-08-01 07:23:15 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v6

2025-08-01 07:23:15 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2025-08-01 07:23:15 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-08-01 07:23:15 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-08-01 07:23:15 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

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

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

COPY --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-08-01 07:23:23 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=false INSTALL_ARIA2=true /bin/sh -c /entrypoint.sh version # buildkit

2025-08-01 07:23:23 UTC (buildkit.dockerfile.v0)

ENV PUID=0 PGID=0 UMASK=022 RUN_ARIA2=true

2025-08-01 07:23:23 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-08-01 07:23:23 UTC (buildkit.dockerfile.v0)

EXPOSE map[5244/tcp:{} 5245/tcp:{}]

2025-08-01 07:23:23 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-08-01 07:23:23 UTC

Size

39.7 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-08-01T07:23:11.874Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    a5a22e70858256013240c3046276dd044954a101
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.0-lite-aria2

Environment
PATH

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

PGID

0

PUID

0

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:b288be7834ba32796c656adfa746762de780c684bb50771d66e66b791a0e1879 - 26.3% (10.4 MB)

[#003] sha256:9f5ee51ac69b50be4d1336d3574a7fcb3076831551c6a8fe8e93757249bcb97b - 0.0% (234 Bytes)

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

[#005] sha256:54ad336599e296325dd135baf249bab0a7783e7f013a55c4ebb45cfa9460e5e6 - 66.26% (26.3 MB)

[#006] sha256:91076f46e6bf6bbbca979022fae437d1ec8efb57c08be65b48bb2f13e109a752 - 0.0% (289 Bytes)

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


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

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

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

CMD ["/bin/sh"]

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v7

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-08-01 06:56:53 UTC (buildkit.dockerfile.v0)

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

2025-08-01 06:56:53 UTC (buildkit.dockerfile.v0)

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

2025-08-01 07:23:16 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v7

2025-08-01 07:23:16 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2025-08-01 07:23:16 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-08-01 07:23:16 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-08-01 07:23:16 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

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

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

COPY --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-08-01 07:23:23 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=false INSTALL_ARIA2=true /bin/sh -c /entrypoint.sh version # buildkit

2025-08-01 07:23:23 UTC (buildkit.dockerfile.v0)

ENV PUID=0 PGID=0 UMASK=022 RUN_ARIA2=true

2025-08-01 07:23:23 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-08-01 07:23:23 UTC (buildkit.dockerfile.v0)

EXPOSE map[5244/tcp:{} 5245/tcp:{}]

2025-08-01 07:23:23 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-08-01 07:23:24 UTC

Size

41.5 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-08-01T07:23:11.874Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    a5a22e70858256013240c3046276dd044954a101
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.0-lite-aria2

Environment
PATH

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

PGID

0

PUID

0

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:3251511f7a4ffb4c744de40d8a59ee4a77f1bbfd814b0678fe71c78104767bf6 - 29.14% (12.1 MB)

[#003] sha256:9db58240356171f65eb679bd22b454f810f8300cfcaa66b3194f7914031bb254 - 0.0% (231 Bytes)

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

[#005] sha256:7c10b30e8748c704eb81b7a3b30de1a03ca340591fcd5cd6e375eadae9d79d88 - 61.68% (25.6 MB)

[#006] sha256:91076f46e6bf6bbbca979022fae437d1ec8efb57c08be65b48bb2f13e109a752 - 0.0% (289 Bytes)

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


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

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

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

CMD ["/bin/sh"]

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm64

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-08-01 06:56:54 UTC (buildkit.dockerfile.v0)

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

2025-08-01 06:56:54 UTC (buildkit.dockerfile.v0)

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

2025-08-01 07:23:16 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm64

2025-08-01 07:23:16 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2025-08-01 07:23:16 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-08-01 07:23:16 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-08-01 07:23:16 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

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

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

COPY --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-08-01 07:23:24 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=false INSTALL_ARIA2=true /bin/sh -c /entrypoint.sh version # buildkit

2025-08-01 07:23:24 UTC (buildkit.dockerfile.v0)

ENV PUID=0 PGID=0 UMASK=022 RUN_ARIA2=true

2025-08-01 07:23:24 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-08-01 07:23:24 UTC (buildkit.dockerfile.v0)

EXPOSE map[5244/tcp:{} 5245/tcp:{}]

2025-08-01 07:23:24 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-08-01 07:23:23 UTC

Size

41.2 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-08-01T07:23:11.874Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    a5a22e70858256013240c3046276dd044954a101
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.0-lite-aria2

Environment
PATH

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

PGID

0

PUID

0

RUN_ARIA2

true

UMASK

022


Layers

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

[#001] sha256:7d00510bf0553dc4095b798551356629ebb37e456d466d6574f3d7c1b027bb22 - 0.0% (116 Bytes)

[#002] sha256:bc81e345d65de2b1d6738f581ba6bf6642f7543611f9fbb2a63de9ed31976879 - 28.68% (11.8 MB)

[#003] sha256:23ce4997173c43f60cfc1e3d1595f7fdaa8a777eae8fe58372bad00105d0f1cc - 0.0% (234 Bytes)

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

[#005] sha256:a48c01d5e699cfa9883e377038fc3ee8832a4c2b09614a2af2a8bc70143ac302 - 63.38% (26.1 MB)

[#006] sha256:91076f46e6bf6bbbca979022fae437d1ec8efb57c08be65b48bb2f13e109a752 - 0.0% (289 Bytes)

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


History
2025-08-01 02:04:07 UTC (buildkit.dockerfile.v0)

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

2025-08-01 02:04:07 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-08-01 06:56:27 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/loong64

2025-08-01 06:56:27 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2025-08-01 06:56:27 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-08-01 06:56:27 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-08-01 06:56:27 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-08-01 06:56:42 UTC (buildkit.dockerfile.v0)

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

2025-08-01 06:56:42 UTC (buildkit.dockerfile.v0)

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

2025-08-01 07:23:15 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/loong64

2025-08-01 07:23:15 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2025-08-01 07:23:15 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-08-01 07:23:15 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-08-01 07:23:15 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

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

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

COPY --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-08-01 07:23:23 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=false INSTALL_ARIA2=true /bin/sh -c /entrypoint.sh version # buildkit

2025-08-01 07:23:23 UTC (buildkit.dockerfile.v0)

ENV PUID=0 PGID=0 UMASK=022 RUN_ARIA2=true

2025-08-01 07:23:23 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-08-01 07:23:23 UTC (buildkit.dockerfile.v0)

EXPOSE map[5244/tcp:{} 5245/tcp:{}]

2025-08-01 07:23:23 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-08-01 07:23:24 UTC

Size

41 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-08-01T07:23:11.874Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    a5a22e70858256013240c3046276dd044954a101
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.0-lite-aria2

Environment
PATH

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

PGID

0

PUID

0

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:ac6fbe277e84ec5b332c49937b4e1ba80cc8b450fb0255b189cea10f52bc4aa5 - 29.6% (12.1 MB)

[#003] sha256:9f5ee51ac69b50be4d1336d3574a7fcb3076831551c6a8fe8e93757249bcb97b - 0.0% (234 Bytes)

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

[#005] sha256:0b4c23da03aa9b7beafa9bd44d29ac09c12356ce1a6140cc344e71858ab13141 - 62.09% (25.5 MB)

[#006] sha256:91076f46e6bf6bbbca979022fae437d1ec8efb57c08be65b48bb2f13e109a752 - 0.0% (289 Bytes)

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


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

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

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

CMD ["/bin/sh"]

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/ppc64le

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-08-01 06:56:53 UTC (buildkit.dockerfile.v0)

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

2025-08-01 06:56:53 UTC (buildkit.dockerfile.v0)

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

2025-08-01 07:23:16 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/ppc64le

2025-08-01 07:23:16 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2025-08-01 07:23:16 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-08-01 07:23:16 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-08-01 07:23:16 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

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

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

COPY --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-08-01 07:23:24 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=false INSTALL_ARIA2=true /bin/sh -c /entrypoint.sh version # buildkit

2025-08-01 07:23:24 UTC (buildkit.dockerfile.v0)

ENV PUID=0 PGID=0 UMASK=022 RUN_ARIA2=true

2025-08-01 07:23:24 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-08-01 07:23:24 UTC (buildkit.dockerfile.v0)

EXPOSE map[5244/tcp:{} 5245/tcp:{}]

2025-08-01 07:23:24 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-08-01 07:23:23 UTC

Size

41.2 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-08-01T07:23:11.874Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    a5a22e70858256013240c3046276dd044954a101
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.0-lite-aria2

Environment
PATH

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

PGID

0

PUID

0

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:8601659947fb12b1a99af7ef236c7219fe19edd46127da861313337a95a2a393 - 28.53% (11.8 MB)

[#003] sha256:1b834e73d36b115de4a8bb92a4bf98a88ecc4e87c36a635aa354b2c40879bf1a - 0.0% (235 Bytes)

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

[#005] sha256:16bff4cfab4744d1f6847c13f826206c36f7817d2c0ca3d3a439c3ac6781c879 - 63.72% (26.3 MB)

[#006] sha256:91076f46e6bf6bbbca979022fae437d1ec8efb57c08be65b48bb2f13e109a752 - 0.0% (289 Bytes)

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


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

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

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

CMD ["/bin/sh"]

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/riscv64

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-08-01 06:56:28 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-08-01 06:56:52 UTC (buildkit.dockerfile.v0)

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

2025-08-01 06:56:52 UTC (buildkit.dockerfile.v0)

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

2025-08-01 07:23:17 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/riscv64

2025-08-01 07:23:17 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=false

2025-08-01 07:23:17 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-08-01 07:23:17 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-08-01 07:23:17 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

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

2025-08-01 07:23:21 UTC (buildkit.dockerfile.v0)

COPY --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-08-01 07:23:23 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=false INSTALL_ARIA2=true /bin/sh -c /entrypoint.sh version # buildkit

2025-08-01 07:23:23 UTC (buildkit.dockerfile.v0)

ENV PUID=0 PGID=0 UMASK=022 RUN_ARIA2=true

2025-08-01 07:23:23 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-08-01 07:23:23 UTC (buildkit.dockerfile.v0)

EXPOSE map[5244/tcp:{} 5245/tcp:{}]

2025-08-01 07:23:23 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