Namespace
openlistteam
Image / Tag
openlist:latest-ffmpeg
Content Digest
sha256:c74b237344a40df3ed6e411ccea8842d9e18a7433b61eeecc81ce8ab27fdead7
Details
Created

2025-11-25 12:02:09 UTC

Size

97.9 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-11-25T12:01:52.860Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    72206ac9f69a15f2e142979cb92e694bafc34a3b
  • 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.8-ffmpeg

Environment
PATH

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

RUN_ARIA2

false

UMASK

022


Layers

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

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

[#002] sha256:df2edd35ec8b8047ec69d5a6d0d76aa4652271f493d051c29ac595c9275466dc - 48.09% (47.1 MB)

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

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

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

[#006] sha256:ad4663b98b26ad41b94578d3541a1f87973468c089c58a2875c6369a96101553 - 48.53% (47.5 MB)

[#007] sha256:e4e77d1bdef7eb17d3cd573eead2b5b14da645f694426f292c64d96a7ba5c14d - 0.0% (842 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-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/386

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-24 20:28:01 UTC (buildkit.dockerfile.v0)

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

2025-11-24 20:28:01 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/386

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:08 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

USER openlist

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-11-25 12:02:09 UTC

Size

106 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-11-25T12:01:52.860Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    72206ac9f69a15f2e142979cb92e694bafc34a3b
  • 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.8-ffmpeg

Environment
PATH

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

RUN_ARIA2

false

UMASK

022


Layers

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

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

[#002] sha256:904383846ad6a819967c38b3c01cbc42fd5804e05a1ba99690899fbdcd8873d2 - 50.83% (54 MB)

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

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

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

[#006] sha256:9d5e6bee49ad730bdc303a4e1ba5c549ee3a60be33138a738964399843bcd3fa - 45.89% (48.7 MB)

[#007] sha256:e4e77d1bdef7eb17d3cd573eead2b5b14da645f694426f292c64d96a7ba5c14d - 0.0% (842 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-11-24 20:27:42 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/amd64

2025-11-24 20:27:42 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-24 20:27:42 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-11-24 20:27:42 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-24 20:27:42 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-24 20:27:52 UTC (buildkit.dockerfile.v0)

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

2025-11-24 20:27:53 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/amd64

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:08 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

USER openlist

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-11-25 12:02:11 UTC

Size

92.4 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-11-25T12:01:52.860Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    72206ac9f69a15f2e142979cb92e694bafc34a3b
  • 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.8-ffmpeg

Environment
PATH

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

RUN_ARIA2

false

UMASK

022


Layers

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

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

[#002] sha256:969ef3031b8af14b83e813bec37126ca67cbe24c1053ec6ff2468355bdfeefb4 - 45.03% (41.6 MB)

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

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

[#005] sha256:cf63b206a711d296d594cd3edf420d3a4dd39d90b1d57eb1f89d06a89ca24f6a - 0.0% (1019 Bytes)

[#006] sha256:e44d231ff8efbf736f4d56386425c43efb39f0bb556cc5668cf90ba35772c7cc - 51.49% (47.6 MB)

[#007] sha256:e4e77d1bdef7eb17d3cd573eead2b5b14da645f694426f292c64d96a7ba5c14d - 0.0% (842 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-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v6

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-24 20:28:22 UTC (buildkit.dockerfile.v0)

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

2025-11-24 20:28:22 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v6

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:08 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

USER openlist

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-11-25 12:02:11 UTC

Size

90.4 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-11-25T12:01:52.860Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    72206ac9f69a15f2e142979cb92e694bafc34a3b
  • 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.8-ffmpeg

Environment
PATH

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

RUN_ARIA2

false

UMASK

022


Layers

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

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

[#002] sha256:23b0c0a8000fd5bf5d6a511e914e01a61d498bb978d1a5670d2a945174451be4 - 44.12% (39.9 MB)

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

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

[#005] sha256:fc2bf216ba27ae00d57eeb18dd9e751e8b0b6312da646237cda356981c84f2db - 0.0% (1021 Bytes)

[#006] sha256:c8f8b53c67fb11e1370ca531c601327c8cec709db65d88db9b674b8689634214 - 52.61% (47.6 MB)

[#007] sha256:e4e77d1bdef7eb17d3cd573eead2b5b14da645f694426f292c64d96a7ba5c14d - 0.0% (842 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-11-24 20:27:42 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v7

2025-11-24 20:27:42 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-24 20:27:42 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-11-24 20:27:42 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-24 20:27:42 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-24 20:28:14 UTC (buildkit.dockerfile.v0)

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

2025-11-24 20:28:14 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:01 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-25 12:02:01 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v7

2025-11-25 12:02:01 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-25 12:02:01 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-11-25 12:02:01 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-11-25 12:02:01 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-11-25 12:02:01 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-11-25 12:02:01 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:08 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

USER openlist

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-11-25 12:02:11 UTC

Size

101 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-11-25T12:01:52.860Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    72206ac9f69a15f2e142979cb92e694bafc34a3b
  • 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.8-ffmpeg

Environment
PATH

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

RUN_ARIA2

false

UMASK

022


Layers

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

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

[#002] sha256:1b83809fa3d63ae06dc90236470879b0ab0c6fb76ea9fb3a97f7888cdcf6ae63 - 50.4% (51 MB)

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

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

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

[#006] sha256:cfd599b43695ef18f1dc1d7b26aec1d04bb344f69aec738e98c75f2ce18070b6 - 45.84% (46.4 MB)

[#007] sha256:e4e77d1bdef7eb17d3cd573eead2b5b14da645f694426f292c64d96a7ba5c14d - 0.0% (842 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-11-24 20:27:42 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm64

2025-11-24 20:27:42 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-24 20:27:42 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-11-24 20:27:42 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-24 20:27:42 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-24 20:28:16 UTC (buildkit.dockerfile.v0)

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

2025-11-24 20:28:16 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm64

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:08 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

USER openlist

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-11-25 12:02:10 UTC

Size

98.3 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-11-25T12:01:52.860Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    72206ac9f69a15f2e142979cb92e694bafc34a3b
  • 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.8-ffmpeg

Environment
PATH

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

RUN_ARIA2

false

UMASK

022


Layers

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

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

[#002] sha256:c939d3e5fc0c82eefd81ffec327430240df6aeb9451b9ba0b7a3d6d2e18f6dc6 - 48.55% (47.7 MB)

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

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

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

[#006] sha256:cb69ae6919b6a3490aa8ae86f487ba57af66aabd121227c48e6ca2fec55be82e - 48.12% (47.3 MB)

[#007] sha256:e4e77d1bdef7eb17d3cd573eead2b5b14da645f694426f292c64d96a7ba5c14d - 0.0% (842 Bytes)

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


History
2025-11-01 01:42:58 UTC (buildkit.dockerfile.v0)

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

2025-11-01 01:42:58 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-11-24 20:27:39 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/loong64

2025-11-24 20:27:39 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-24 20:27:39 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-11-24 20:27:39 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-24 20:27:39 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-24 20:28:07 UTC (buildkit.dockerfile.v0)

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

2025-11-24 20:28:07 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/loong64

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:08 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

USER openlist

2025-11-25 12:02:10 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:10 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2025-11-25 12:02:10 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-11-25 12:02:10 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2025-11-25 12:02:10 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-11-25 12:02:11 UTC

Size

104 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-11-25T12:01:52.860Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    72206ac9f69a15f2e142979cb92e694bafc34a3b
  • 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.8-ffmpeg

Environment
PATH

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

RUN_ARIA2

false

UMASK

022


Layers

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

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

[#002] sha256:f6c80861a481d148f29c2fc747000ef565b3fe0bb6432564e476c082fa742fb1 - 51.72% (53.6 MB)

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

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

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

[#006] sha256:d631a1ebb2ba874a6e01d665aa26900707e1848a780947778cd40500f1e2270d - 44.99% (46.6 MB)

[#007] sha256:e4e77d1bdef7eb17d3cd573eead2b5b14da645f694426f292c64d96a7ba5c14d - 0.0% (842 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-11-24 20:27:42 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/ppc64le

2025-11-24 20:27:42 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-24 20:27:42 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-11-24 20:27:42 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-24 20:27:42 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-24 20:28:26 UTC (buildkit.dockerfile.v0)

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

2025-11-24 20:28:26 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/ppc64le

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:08 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

USER openlist

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-11-25 12:02:11 UTC

Size

95.7 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-11-25T12:01:52.860Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    72206ac9f69a15f2e142979cb92e694bafc34a3b
  • 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.8-ffmpeg

Environment
PATH

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

RUN_ARIA2

false

UMASK

022


Layers

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

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

[#002] sha256:2653f6c2623fcf29a1ae59180081f364790fcc4a7e15a6431f26cd42a5e02be5 - 47.02% (45 MB)

[#003] sha256:901c2f575403bd2c100e1ce8715e44fa36697eb119a760c5e0742845fac6bd78 - 0.0% (248 Bytes)

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

[#005] sha256:35748a4dc1d16c03d7cf6b92a2220166360203da88855a9c9aa09838099d16cf - 0.0% (1019 Bytes)

[#006] sha256:5a283e7101fa5ffda4aa53512b1e435b1f306e51984960695a0549bb979aa9b1 - 49.63% (47.5 MB)

[#007] sha256:e4e77d1bdef7eb17d3cd573eead2b5b14da645f694426f292c64d96a7ba5c14d - 0.0% (842 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-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/riscv64

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-24 20:27:43 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-24 20:28:21 UTC (buildkit.dockerfile.v0)

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

2025-11-24 20:28:21 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/riscv64

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-11-25 12:02:03 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:08 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:09 UTC (buildkit.dockerfile.v0)

USER openlist

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

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

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-11-25 12:02:11 UTC (buildkit.dockerfile.v0)

EXPOSE [5244/tcp 5245/tcp]

2025-11-25 12:02:11 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