Namespace
openlistteam
Image / Tag
openlist:v4.1.0-aio
Content Digest
sha256:455d83d700cd7c79d0b33a1b0363c05c324d3a09335555e56f0e74c7823d85d8
Details
Created

2025-08-01 07:23:55 UTC

Size

94.9 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-08-01T07:23:41.142Z
  • 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-aio

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 - 3.48% (3.3 MB)

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

[#002] sha256:462831e3400fbebb60ad73099b4a18126a67b06d34b5f95b2dc6da3b4aeeb30e - 52.47% (49.8 MB)

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

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

[#005] sha256:60552b164de0cdc7e8ab93eb37720eb5c8c213e98fe9fc7f2ad2ca65444bb90d - 44.05% (41.8 MB)

[#006] sha256:9e61df11050035a71da883ffcd1f673be0e021ce73108e1cada6c288c96410d3 - 0.0% (291 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:27 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/386

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

ARG INSTALL_FFMPEG=true

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:38 UTC (buildkit.dockerfile.v0)

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

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

RUN |3 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=true 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:53 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/386

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

ARG INSTALL_FFMPEG=true

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

ARG INSTALL_ARIA2=true

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

LABEL MAINTAINER=OpenList

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

WORKDIR /opt/openlist/

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

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

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

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

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

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

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

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

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

VOLUME [/opt/openlist/data/]

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

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

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

CMD ["/entrypoint.sh"]

Details
Created

2025-08-01 07:23:55 UTC

Size

102 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-08-01T07:23:41.142Z
  • 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-aio

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 - 3.41% (3.47 MB)

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

[#002] sha256:821e4edd00ede499c778fb2ed209511dbbcb94867343fac8d3026540f0b14a4e - 54.35% (55.4 MB)

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

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

[#005] sha256:3db63c8d811d8c545393c884402105a3d128ddf4133a50ddbbee69a2690add9f - 42.24% (43 MB)

[#006] sha256:9e61df11050035a71da883ffcd1f673be0e021ce73108e1cada6c288c96410d3 - 0.0% (291 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:27 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/amd64

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

ARG INSTALL_FFMPEG=true

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:38 UTC (buildkit.dockerfile.v0)

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

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

RUN |3 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=true 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:53 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/amd64

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

ARG INSTALL_FFMPEG=true

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

ARG INSTALL_ARIA2=true

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

LABEL MAINTAINER=OpenList

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

WORKDIR /opt/openlist/

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

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

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

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

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

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

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

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

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

VOLUME [/opt/openlist/data/]

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

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

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

CMD ["/entrypoint.sh"]

Details
Created

2025-08-01 07:23:57 UTC

Size

91.8 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-08-01T07:23:41.142Z
  • 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-aio

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 - 3.5% (3.21 MB)

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

[#002] sha256:251fd783387145300c925fa0963bc6f811040780046edf8d8ca3fce5ddae948c - 50.82% (46.6 MB)

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

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

[#005] sha256:61ba1ddffa16bbc273bf922b348280b638ecae047510193ec78dd7a4ad623492 - 45.68% (41.9 MB)

[#006] sha256:9e61df11050035a71da883ffcd1f673be0e021ce73108e1cada6c288c96410d3 - 0.0% (291 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:27 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v6

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

ARG INSTALL_FFMPEG=true

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:57:03 UTC (buildkit.dockerfile.v0)

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

2025-08-01 06:57:03 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=true 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:53 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v6

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

ARG INSTALL_FFMPEG=true

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

ARG INSTALL_ARIA2=true

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

LABEL MAINTAINER=OpenList

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

WORKDIR /opt/openlist/

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

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

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

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

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

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

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

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

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

VOLUME [/opt/openlist/data/]

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

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

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

CMD ["/entrypoint.sh"]

Details
Created

2025-08-01 07:23:57 UTC

Size

89.2 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-08-01T07:23:41.142Z
  • 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-aio

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 - 3.31% (2.95 MB)

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

[#002] sha256:5128bb88801ce2f2e77c4ac9f1ae5143cb76c968fae64246b398e23f106520c0 - 49.72% (44.3 MB)

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

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

[#005] sha256:50a45c2370d8f0dc8cc3d54fde27346a4cea33f9909d578064fba1e15929fe3b - 46.97% (41.9 MB)

[#006] sha256:9e61df11050035a71da883ffcd1f673be0e021ce73108e1cada6c288c96410d3 - 0.0% (291 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:27 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v7

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

ARG INSTALL_FFMPEG=true

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:57:03 UTC (buildkit.dockerfile.v0)

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

2025-08-01 06:57:03 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=true 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:53 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v7

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

ARG INSTALL_FFMPEG=true

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

ARG INSTALL_ARIA2=true

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

LABEL MAINTAINER=OpenList

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

WORKDIR /opt/openlist/

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

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

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

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

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

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

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

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

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

VOLUME [/opt/openlist/data/]

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

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

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

CMD ["/entrypoint.sh"]

Details
Created

2025-08-01 07:23:58 UTC

Size

98.8 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-08-01T07:23:41.142Z
  • 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-aio

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 - 3.86% (3.81 MB)

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

[#002] sha256:8918f6305dcd9e00aeda15a3ccb60f295c066be8e8e510933c5cfbd985712df0 - 54.49% (53.8 MB)

[#003] sha256:03e5525c77cd21ac125b6b415cd5bf84168ab566aa3fb65de525f966b6491343 - 0.0% (230 Bytes)

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

[#005] sha256:6f37ec4802c65870f73e59137b3d2f9fca89c75149ba8e9f96753a297e36f24e - 41.65% (41.1 MB)

[#006] sha256:9e61df11050035a71da883ffcd1f673be0e021ce73108e1cada6c288c96410d3 - 0.0% (291 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:27 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm64

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

ARG INSTALL_FFMPEG=true

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:57:04 UTC (buildkit.dockerfile.v0)

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

2025-08-01 06:57:04 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=true 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:53 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm64

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

ARG INSTALL_FFMPEG=true

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

ARG INSTALL_ARIA2=true

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

LABEL MAINTAINER=OpenList

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

WORKDIR /opt/openlist/

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

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

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

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

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

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

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

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

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

VOLUME [/opt/openlist/data/]

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

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

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

CMD ["/entrypoint.sh"]

Details
Created

2025-08-01 07:23:57 UTC

Size

97.9 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-08-01T07:23:41.142Z
  • 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-aio

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 - 3.34% (3.27 MB)

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

[#002] sha256:76f0dfe0d02917983c98afa97a231f80c2a95daf14f57a942cce6b5bb05c351c - 54.04% (52.9 MB)

[#003] sha256:916b725a4bc8c2ef77020441761603b48cfc2b9ba6aa0646ccda870110eb9181 - 0.0% (235 Bytes)

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

[#005] sha256:1fa37c7526a18338e5b24e768f5279e11d22fd5f00904dfe409cc12623afb06a - 42.61% (41.7 MB)

[#006] sha256:9e61df11050035a71da883ffcd1f673be0e021ce73108e1cada6c288c96410d3 - 0.0% (291 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:31 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/loong64

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

ARG INSTALL_FFMPEG=true

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

ARG INSTALL_ARIA2=true

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

LABEL MAINTAINER=OpenList

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

WORKDIR /opt/openlist/

2025-08-01 06:57:04 UTC (buildkit.dockerfile.v0)

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

2025-08-01 06:57:04 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=true 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:53 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/loong64

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

ARG INSTALL_FFMPEG=true

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

ARG INSTALL_ARIA2=true

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

LABEL MAINTAINER=OpenList

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

WORKDIR /opt/openlist/

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

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

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

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

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

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

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

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

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

VOLUME [/opt/openlist/data/]

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

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

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

CMD ["/entrypoint.sh"]

Details
Created

2025-08-01 07:23:57 UTC

Size

104 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-08-01T07:23:41.142Z
  • 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-aio

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 - 3.26% (3.41 MB)

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

[#002] sha256:3538d09fa85e31d6ff4705c8eb41ed29fa754acce9b430dea6c2e92900b900e0 - 57.44% (60 MB)

[#003] sha256:78d3cc17c6d2cb3bc8df925a01a83c42ed3e7d5b368d3d76796ab7482c6b4ce2 - 0.0% (235 Bytes)

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

[#005] sha256:63735a15db15c2be03177f4cf171595723d34f688df3ec7b5f1ff3b25b5166e3 - 39.3% (41 MB)

[#006] sha256:9e61df11050035a71da883ffcd1f673be0e021ce73108e1cada6c288c96410d3 - 0.0% (291 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:27 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/ppc64le

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

ARG INSTALL_FFMPEG=true

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:57:05 UTC (buildkit.dockerfile.v0)

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

2025-08-01 06:57:05 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=true 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:53 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/ppc64le

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

ARG INSTALL_FFMPEG=true

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

ARG INSTALL_ARIA2=true

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

LABEL MAINTAINER=OpenList

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

WORKDIR /opt/openlist/

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

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

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

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

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

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

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

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

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

VOLUME [/opt/openlist/data/]

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

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

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

CMD ["/entrypoint.sh"]

Details
Created

2025-08-01 07:23:57 UTC

Size

95.2 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-08-01T07:23:41.142Z
  • 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-aio

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 - 3.36% (3.19 MB)

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

[#002] sha256:68973e1bd6df157e58520a584a9fceb2fafc667da3c619c7905e92f1e2117fd8 - 52.68% (50.1 MB)

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

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

[#005] sha256:be31bfad1ce89287b032c8a0a43152c9d0c089d2a05ebed4d03a1b33817f2c1c - 43.97% (41.8 MB)

[#006] sha256:9e61df11050035a71da883ffcd1f673be0e021ce73108e1cada6c288c96410d3 - 0.0% (291 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:27 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/riscv64

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

ARG INSTALL_FFMPEG=true

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:57:01 UTC (buildkit.dockerfile.v0)

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

2025-08-01 06:57:02 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=true 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:53 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/riscv64

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

ARG INSTALL_FFMPEG=true

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

ARG INSTALL_ARIA2=true

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

LABEL MAINTAINER=OpenList

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

WORKDIR /opt/openlist/

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

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

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

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

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

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

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

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

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

VOLUME [/opt/openlist/data/]

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

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

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