Namespace
openlistteam
Image / Tag
openlist:v4.1.10-lite-aio
Content Digest
sha256:c7a6e69081a0de95785b0f1d484db80125c5f0a0163b50f0d235980078487a85
Details
Created

2026-01-31 09:17:32 UTC

Size

79.6 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-01-31T09:17:21.430Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    e3c664f81d0584fbbdb86ffe6644be16259371c1
  • 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.10-lite-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:ee7233cd06b66bbb32f88dd786957e87eef074cc76712fb01f8945f348164eae - 62.06% (49.4 MB)

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

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

[#005] sha256:fdb592d625418172824dcc80261f76507de5b39abb4562f3fe7b005df7d510e0 - 0.0% (998 Bytes)

[#006] sha256:8963b685de4b1c9b3b4019a2cd2725258351ef5d9e59643dadf7ad6f1c72ae5d - 33.52% (26.7 MB)

[#007] sha256:1e381bf49af48dbbce904d11e499a7e167d4ac86d8cfaa1fb5400592652151fe - 0.0% (843 Bytes)

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


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

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

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

CMD ["/bin/sh"]

2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/386

2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-01-30 20:36:25 UTC (buildkit.dockerfile.v0)

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

2026-01-30 20:36:25 UTC (buildkit.dockerfile.v0)

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

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

LABEL MAINTAINER=OpenList

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

ARG TARGETPLATFORM=linux/386

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

ARG INSTALL_FFMPEG=true

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

ARG INSTALL_ARIA2=true

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

ARG USER=openlist

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

ARG UID=1001

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

ARG GID=1001

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

WORKDIR /opt/openlist/

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

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

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

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

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

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

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

USER openlist

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

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

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2026-01-31 09:17:32 UTC

Size

87.7 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-01-31T09:17:21.430Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    e3c664f81d0584fbbdb86ffe6644be16259371c1
  • 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.10-lite-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:a156b225c97586600f1387d5b1fa6049dd29b728d96f5fae94e4589c4d1580d7 - 63.94% (56.1 MB)

[#003] sha256:b1cbd2ce89162eecdcfe96bf44ef4b01241ddf05cef74dede3e1362bf77a2300 - 0.0% (255 Bytes)

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

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

[#006] sha256:86c73a1d9420904e90e12b689167e74df81d085c7806140207f8795e1c9102a2 - 31.86% (27.9 MB)

[#007] sha256:1e381bf49af48dbbce904d11e499a7e167d4ac86d8cfaa1fb5400592652151fe - 0.0% (843 Bytes)

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


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

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

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

CMD ["/bin/sh"]

2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/amd64

2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-01-30 20:36:25 UTC (buildkit.dockerfile.v0)

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

2026-01-30 20:36:25 UTC (buildkit.dockerfile.v0)

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

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

LABEL MAINTAINER=OpenList

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

ARG TARGETPLATFORM=linux/amd64

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

ARG INSTALL_FFMPEG=true

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

ARG INSTALL_ARIA2=true

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

ARG USER=openlist

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

ARG UID=1001

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

ARG GID=1001

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

WORKDIR /opt/openlist/

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

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

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

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

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

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

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

USER openlist

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

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

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2026-01-31 09:17:35 UTC

Size

74.1 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-01-31T09:17:21.430Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    e3c664f81d0584fbbdb86ffe6644be16259371c1
  • 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.10-lite-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:e927b221ce6fc6a872f3098a681dafcbadd7481a72cbe820510301754f27e706 - 59.25% (43.9 MB)

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

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

[#005] sha256:dffb33fc841672340a0c22e23ad110c591ff56ec34f1bdfb3ce909a24234453c - 0.0% (997 Bytes)

[#006] sha256:e431ba6535fb9eadf6beee8ea18e93941041ac2ad7fc3201f4c17f5d9711d272 - 36.15% (26.8 MB)

[#007] sha256:1e381bf49af48dbbce904d11e499a7e167d4ac86d8cfaa1fb5400592652151fe - 0.0% (843 Bytes)

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


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

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

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

CMD ["/bin/sh"]

2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v6

2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-01-30 20:36:53 UTC (buildkit.dockerfile.v0)

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

2026-01-30 20:36:54 UTC (buildkit.dockerfile.v0)

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

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

LABEL MAINTAINER=OpenList

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

ARG TARGETPLATFORM=linux/arm/v6

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

ARG INSTALL_FFMPEG=true

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

ARG INSTALL_ARIA2=true

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

ARG USER=openlist

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

ARG UID=1001

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

ARG GID=1001

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

WORKDIR /opt/openlist/

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

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

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

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

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

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

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

USER openlist

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

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

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2026-01-31 09:17:35 UTC

Size

71.9 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-01-31T09:17:21.430Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    e3c664f81d0584fbbdb86ffe6644be16259371c1
  • 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.10-lite-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:0faf926141bfd7412108583dc3c72ced9da9f25bed6298614eef5302649eda72 - 58.4% (42 MB)

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

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

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

[#006] sha256:3a9f81191e9723a8922e58d5aa9fc3989b09d000077f9f16bac8fe99c0916e1d - 37.24% (26.8 MB)

[#007] sha256:1e381bf49af48dbbce904d11e499a7e167d4ac86d8cfaa1fb5400592652151fe - 0.0% (843 Bytes)

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


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

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

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

CMD ["/bin/sh"]

2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v7

2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-01-30 20:36:51 UTC (buildkit.dockerfile.v0)

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

2026-01-30 20:36:51 UTC (buildkit.dockerfile.v0)

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

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

LABEL MAINTAINER=OpenList

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

ARG TARGETPLATFORM=linux/arm/v7

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

ARG INSTALL_FFMPEG=true

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

ARG INSTALL_ARIA2=true

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

ARG USER=openlist

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

ARG UID=1001

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

ARG GID=1001

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

WORKDIR /opt/openlist/

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

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

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

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

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

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

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

USER openlist

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

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

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2026-01-31 09:17:35 UTC

Size

82.3 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-01-31T09:17:21.430Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    e3c664f81d0584fbbdb86ffe6644be16259371c1
  • 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.10-lite-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:05409d9166d944495f49ff456f013be1570a3d6190f6715a240c5e89d6dfac99 - 64.0% (52.7 MB)

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

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

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

[#006] sha256:29ce617e1b76f3d9eddc5c1b0af77f32d95aa866042ef04ce645725aa6a49756 - 31.13% (25.6 MB)

[#007] sha256:1e381bf49af48dbbce904d11e499a7e167d4ac86d8cfaa1fb5400592652151fe - 0.0% (843 Bytes)

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


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

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

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

CMD ["/bin/sh"]

2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm64

2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-01-30 20:36:53 UTC (buildkit.dockerfile.v0)

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

2026-01-30 20:36:53 UTC (buildkit.dockerfile.v0)

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

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

LABEL MAINTAINER=OpenList

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

ARG TARGETPLATFORM=linux/arm64

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

ARG INSTALL_FFMPEG=true

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

ARG INSTALL_ARIA2=true

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

ARG USER=openlist

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

ARG UID=1001

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

ARG GID=1001

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

WORKDIR /opt/openlist/

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

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

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

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

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

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

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

USER openlist

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

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

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2026-01-31 09:17:35 UTC

Size

82.6 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-01-31T09:17:21.430Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    e3c664f81d0584fbbdb86ffe6644be16259371c1
  • 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.10-lite-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

[#000] sha256:e9b21f9aba9bcb1f55e3d74daf8b6cc288e64fd55404097eac23c76809b7d244 - 4.59% (3.79 MB)

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

[#002] sha256:b3d9f0bfdfe99b06068f2801030c0f5b08ed4da1eaec07dc0d3835807b832f86 - 63.36% (52.4 MB)

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

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

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

[#006] sha256:7cfc317646be7d3a9e748d3112d084798850ebc53855bcd67bec8da12170ea18 - 32.05% (26.5 MB)

[#007] sha256:1e381bf49af48dbbce904d11e499a7e167d4ac86d8cfaa1fb5400592652151fe - 0.0% (843 Bytes)

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


History
2026-01-01 02:03:39 UTC (buildkit.dockerfile.v0)

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

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

CMD ["/bin/sh"]

2026-01-30 20:36:11 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/loong64

2026-01-30 20:36:11 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-01-30 20:36:11 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-01-30 20:36:11 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-01-30 20:36:11 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-01-30 20:36:39 UTC (buildkit.dockerfile.v0)

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

2026-01-30 20:36:40 UTC (buildkit.dockerfile.v0)

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

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

LABEL MAINTAINER=OpenList

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

ARG TARGETPLATFORM=linux/loong64

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

ARG INSTALL_FFMPEG=true

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

ARG INSTALL_ARIA2=true

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

ARG USER=openlist

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

ARG UID=1001

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

ARG GID=1001

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

WORKDIR /opt/openlist/

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

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

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

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

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

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

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

USER openlist

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

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

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2026-01-31 09:17:35 UTC

Size

85.4 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-01-31T09:17:21.430Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    e3c664f81d0584fbbdb86ffe6644be16259371c1
  • 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.10-lite-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:2a98810d41c9d32124b157633838088e003d6c796ac9170e3a80a6172d378df4 - 65.49% (55.9 MB)

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

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

[#005] sha256:553d71225fdab14627eaa1061170201a24839f8287303abbb7d3017ddf56100a - 0.0% (999 Bytes)

[#006] sha256:0d8babeb353ef055c8a3148df1a5102aba5209338887a499949e77b1ca2c4b1f - 30.23% (25.8 MB)

[#007] sha256:1e381bf49af48dbbce904d11e499a7e167d4ac86d8cfaa1fb5400592652151fe - 0.0% (843 Bytes)

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


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

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

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

CMD ["/bin/sh"]

2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/ppc64le

2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-01-30 20:36:55 UTC (buildkit.dockerfile.v0)

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

2026-01-30 20:36:55 UTC (buildkit.dockerfile.v0)

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

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

LABEL MAINTAINER=OpenList

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

ARG TARGETPLATFORM=linux/ppc64le

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

ARG INSTALL_FFMPEG=true

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

ARG INSTALL_ARIA2=true

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

ARG USER=openlist

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

ARG UID=1001

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

ARG GID=1001

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

WORKDIR /opt/openlist/

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

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

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

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

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

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

2026-01-31 09:17:32 UTC (buildkit.dockerfile.v0)

USER openlist

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

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

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-01-31 09:17:35 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2026-01-31 09:17:33 UTC

Size

77.5 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2026-01-31T09:17:21.430Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    e3c664f81d0584fbbdb86ffe6644be16259371c1
  • 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.10-lite-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:ddf57f7a70d16843e724c11ff1f0deeb7618bd5bae60bfd3661f9e218cddc4f4 - 61.16% (47.4 MB)

[#003] sha256:3ff1d8a1e4e9e2510a998f7052fcab0cde89e741686263ee6acc32a9bc52b616 - 0.0% (254 Bytes)

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

[#005] sha256:89e907b367d98d5a9352562fa3dba4e294a170a1ca77cbca5d34d5243fc22593 - 0.0% (999 Bytes)

[#006] sha256:f332b2af9286a3276665ad381eff063a400553e739b041ed6736f9b86280e9bc - 34.42% (26.7 MB)

[#007] sha256:1e381bf49af48dbbce904d11e499a7e167d4ac86d8cfaa1fb5400592652151fe - 0.0% (843 Bytes)

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


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

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

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

CMD ["/bin/sh"]

2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/riscv64

2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2026-01-30 20:36:51 UTC (buildkit.dockerfile.v0)

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

2026-01-30 20:36:51 UTC (buildkit.dockerfile.v0)

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

2026-01-31 09:17:30 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2026-01-31 09:17:30 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/riscv64

2026-01-31 09:17:30 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2026-01-31 09:17:30 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2026-01-31 09:17:30 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2026-01-31 09:17:30 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2026-01-31 09:17:30 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2026-01-31 09:17:30 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

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

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

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

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

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

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

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

USER openlist

2026-01-31 09:17:33 UTC (buildkit.dockerfile.v0)

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

2026-01-31 09:17:33 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2026-01-31 09:17:33 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2026-01-31 09:17:33 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2026-01-31 09:17:33 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]