Namespace
openlistteam
Image / Tag
openlist:v4.1.2-lite-aio
Content Digest
sha256:2cbea2b153eb018c8cf64612afffb4948dfeb852d188242ed5030377aa20f82c
Details
Created

2025-09-06 14:32:32 UTC

Size

79.7 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-09-06T14:32:21.551Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    e97f0a289e4810777c2988505a165314fa91f85d
  • 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.2-lite-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:7b394105ec0643a06cfd628f11d7327ddd395dc69d74b409c31689b3d71d902a - 63.38% (50.5 MB)

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

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

[#005] sha256:ed1d79d44d9c0b95e521e69a714d29fb64a84ed07be610167a5cd10568cad06a - 0.0% (1015 Bytes)

[#006] sha256:93d48d5da373863a2aa823f34740610a5841af22c565db1b4714f21d33ef5b34 - 32.47% (25.9 MB)

[#007] sha256:0b054bc793e0ac13b3044d32aa328b56be17cc80b459d12f8ef963f7a3a91071 - 0.0% (843 Bytes)

[#008] 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-09-05 20:24:08 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/386

2025-09-05 20:24:08 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-05 20:24:08 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-09-05 20:24:08 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-05 20:24:08 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-05 20:24:21 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-09-05 20:24:21 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

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/386

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-06 14:32: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

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

USER openlist

2025-09-06 14:32: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

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-09-06 14:32:32 UTC

Size

86.9 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-09-06T14:32:21.551Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    e97f0a289e4810777c2988505a165314fa91f85d
  • 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.2-lite-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:cbb1fcf756f8aca053d14148f42ddc0fe300befcf32d44fe7c28e76f023d42b6 - 64.91% (56.4 MB)

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

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

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

[#006] sha256:d42c9e4cee9a964b28f511c907f8a04535cde7f876e64a1676b034a230da5e58 - 31.1% (27 MB)

[#007] sha256:0b054bc793e0ac13b3044d32aa328b56be17cc80b459d12f8ef963f7a3a91071 - 0.0% (843 Bytes)

[#008] 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-09-05 20:24:07 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/amd64

2025-09-05 20:24:07 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-05 20:24:07 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-09-05 20:24:07 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-05 20:24:07 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-05 20:24:21 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-09-05 20:24:21 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

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/amd64

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-06 14:32: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

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

USER openlist

2025-09-06 14:32: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

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-09-06 14:32:34 UTC

Size

76.2 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-09-06T14:32:21.551Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    e97f0a289e4810777c2988505a165314fa91f85d
  • 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.2-lite-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:d11f1c4328ce66ac3973ae1530222c968a5f77f17c835f84cd2d4295cc9428ee - 61.71% (47.1 MB)

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

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

[#005] sha256:8c32c086b93dc457b6fbe3f13d6f9602cf3633ae0d2c2bd665933e1e1608bb45 - 0.0% (1017 Bytes)

[#006] sha256:655f6097fe984684ebb96019e45cdc39ed5cfa11920672c3118098377a898a06 - 34.08% (26 MB)

[#007] sha256:0b054bc793e0ac13b3044d32aa328b56be17cc80b459d12f8ef963f7a3a91071 - 0.0% (843 Bytes)

[#008] 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-09-05 20:24:07 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v6

2025-09-05 20:24:07 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-05 20:24:07 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-09-05 20:24:07 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-05 20:24:07 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-05 20:24:43 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-09-05 20:24:43 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

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v6

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-06 14:32:31 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

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

USER openlist

2025-09-06 14:32:34 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:34 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2025-09-06 14:32:34 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-09-06 14:32:34 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:34 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-09-06 14:32:33 UTC

Size

73.8 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-09-06T14:32:21.551Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    e97f0a289e4810777c2988505a165314fa91f85d
  • 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.2-lite-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:d7de9a267377cc9bfcbe1f838fd756cf233bc10ec5a466afb3d78a3f00f3dae3 - 60.85% (44.9 MB)

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

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

[#005] sha256:8c32c086b93dc457b6fbe3f13d6f9602cf3633ae0d2c2bd665933e1e1608bb45 - 0.0% (1017 Bytes)

[#006] sha256:6ba58df983521db6a74cc229ce41a515ddf3b2d051c3b1b8cff62278c5501fcb - 35.15% (26 MB)

[#007] sha256:0b054bc793e0ac13b3044d32aa328b56be17cc80b459d12f8ef963f7a3a91071 - 0.0% (843 Bytes)

[#008] 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-09-05 20:24:08 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v7

2025-09-05 20:24:08 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-05 20:24:08 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-09-05 20:24:08 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-05 20:24:08 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-05 20:24:43 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-09-05 20:24:43 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

2025-09-06 14:32:30 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-06 14:32:30 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v7

2025-09-06 14:32:30 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-06 14:32:30 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-09-06 14:32:30 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-09-06 14:32:30 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-09-06 14:32:30 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-09-06 14:32:30 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-06 14:32:31 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

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

USER openlist

2025-09-06 14:32:33 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

2025-09-06 14:32:33 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2025-09-06 14:32:33 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-09-06 14:32:33 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:33 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-09-06 14:32:34 UTC

Size

83.3 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-09-06T14:32:21.551Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    e97f0a289e4810777c2988505a165314fa91f85d
  • 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.2-lite-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:d8e2a268597752daccf13abfdf9b86c3d704bf2eaa584d3f8783e977a771e4f9 - 65.59% (54.6 MB)

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

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

[#005] sha256:ac458678e5d8130e2c9ff4c5885ba0937e09550b7d8983922de007e047e7a8be - 0.0% (1018 Bytes)

[#006] sha256:ed46c67486b3bd09e9ebcb205c4c0b4d933da1935c9f23c349fb901449c370fe - 29.84% (24.9 MB)

[#007] sha256:0b054bc793e0ac13b3044d32aa328b56be17cc80b459d12f8ef963f7a3a91071 - 0.0% (843 Bytes)

[#008] 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-09-05 20:24:07 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm64

2025-09-05 20:24:07 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-05 20:24:07 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-09-05 20:24:07 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-05 20:24:07 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-05 20:24:45 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-09-05 20:24:46 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

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm64

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-06 14:32: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

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

USER openlist

2025-09-06 14:32:34 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

2025-09-06 14:32:34 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2025-09-06 14:32:34 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-09-06 14:32:34 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:34 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-09-06 14:32:34 UTC

Size

82.2 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-09-06T14:32:21.551Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    e97f0a289e4810777c2988505a165314fa91f85d
  • 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.2-lite-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:8836b2dff0cb7376717e6aeca00b94c752971c700149784925f88b43c04e07bb - 64.78% (53.2 MB)

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

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

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

[#006] sha256:96de9c921f200383135b1ec08a77c122aab647538b57ebdc8e3608b0573f6bac - 31.24% (25.7 MB)

[#007] sha256:0b054bc793e0ac13b3044d32aa328b56be17cc80b459d12f8ef963f7a3a91071 - 0.0% (843 Bytes)

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


History
2025-09-01 01:50:11 UTC (buildkit.dockerfile.v0)

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

2025-09-01 01:50:11 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-09-05 20:24:02 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/loong64

2025-09-05 20:24:02 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-05 20:24:02 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-09-05 20:24:02 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-05 20:24:02 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-05 20:24:32 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-09-05 20:24:32 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

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/loong64

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-06 14:32: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

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

USER openlist

2025-09-06 14:32:34 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:34 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2025-09-06 14:32:34 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-09-06 14:32:34 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:34 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-09-06 14:32:35 UTC

Size

89.4 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-09-06T14:32:21.551Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    e97f0a289e4810777c2988505a165314fa91f85d
  • 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.2-lite-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:21d1dbbfdac41100bb2a613619e3498fb21e03504591ca07cee2c83ef648f19c - 68.18% (61 MB)

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

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

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

[#006] sha256:890dd422da1135fe9ae5ecb0d67bbeca294ceea5b4e6320fe5f7d1d6499e753a - 28.0% (25 MB)

[#007] sha256:0b054bc793e0ac13b3044d32aa328b56be17cc80b459d12f8ef963f7a3a91071 - 0.0% (843 Bytes)

[#008] 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-09-05 20:24:08 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/ppc64le

2025-09-05 20:24:08 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-05 20:24:08 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-09-05 20:24:08 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-05 20:24:08 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-05 20:24:46 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-09-05 20:24:46 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

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/ppc64le

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-06 14:32:32 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

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

USER openlist

2025-09-06 14:32: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

2025-09-06 14:32:35 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2025-09-06 14:32:35 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-09-06 14:32:35 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:35 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-09-06 14:32:34 UTC

Size

79.9 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-09-06T14:32:21.551Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    e97f0a289e4810777c2988505a165314fa91f85d
  • 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.2-lite-aio

Environment
PATH

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

RUN_ARIA2

true

UMASK

022


Layers

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

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

[#002] sha256:48d9eeb9afded4bf90a83a61a0e1c390f5227c1d68d75370b11b5134582964eb - 63.65% (50.9 MB)

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

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

[#005] sha256:ba61f7c181f42f02566a4b2aa584af81f6fa34f2358fe5859f5320ed1d63e09a - 0.0% (1018 Bytes)

[#006] sha256:ee969ab660f32cf345b921b5607f8bcc5e502b000f2bc020ddd73511eb2bb826 - 32.35% (25.9 MB)

[#007] sha256:0b054bc793e0ac13b3044d32aa328b56be17cc80b459d12f8ef963f7a3a91071 - 0.0% (843 Bytes)

[#008] 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-09-05 20:24:08 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/riscv64

2025-09-05 20:24:08 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-05 20:24:08 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-09-05 20:24:08 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-05 20:24:08 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-05 20:24:46 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-09-05 20:24:46 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

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/riscv64

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=true

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-09-06 14:32:31 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-06 14:32: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

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:32 UTC (buildkit.dockerfile.v0)

USER openlist

2025-09-06 14:32:34 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:34 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=true

2025-09-06 14:32:34 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-09-06 14:32:34 UTC (buildkit.dockerfile.v0)

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

2025-09-06 14:32:34 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete