Namespace
linuxserver
Image / Tag
ffmpeg:amd64-4.3-cli-ls34
Content Digest
sha256:c28c9c3328d89e33b3fc1faa8a24731e78831f57ac06e318d4c80e83a66221a4
Details
Created

2020-08-08 14:19:39 UTC

Size

129 MB

Content Digest
Labels
  • build_version
    Linuxserver.io version:- 4.3-cli-ls34 Build-date:- 2020-08-08T14:18:44+00:00
  • maintainer
    thelamer

Environment
HOME

/root

LANG

en_US.UTF-8

LANGUAGE

en_US.UTF-8

LIBVA_DRIVERS_PATH

/usr/lib/x86_64-linux-gnu/dri

NVIDIA_DRIVER_CAPABILITIES

compute,video,utility

NVIDIA_VISIBLE_DEVICES

all

PATH

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

TERM

xterm


Layers

[#000] sha256:7b85a34c7e60488d8445a621095db1a23edd214a13d7a9b7d897ece4ad02b2ee - 19.8% (25.5 MB)

[#001] sha256:0a38afe50aacdfbda33e82b7227c115650f7a61ebf2945c1f9fe5856953b3c41 - 0.0% (275 Bytes)

[#002] sha256:ce876225beb6df6fca2d0b5069f9fad92e370e0efdd1f05b4687df662e631d91 - 10.09% (13 MB)

[#003] sha256:7e80ec0d85abe9e75f3fd9dc69628f2f2b79aee0ab70657edcc303f98cc96585 - 0.0% (4.13 KB)

[#004] sha256:d314aab24f5ba09c0f1c5d543d7d29c15015e5e1edaaa74ec0e2371eed33d36b - 27.29% (35.1 MB)

[#005] sha256:7ee0e415d7b36fadc0c492f617bd884a7f1fd01cf999580dc64b00306fb24189 - 42.81% (55.1 MB)

[#006] sha256:d35ad0d6989e4ca5e8ded96191327a390e83b24b37e8eed719681033df724f6b - 0.0% (752 Bytes)


History
2020-08-05 16:09:42 UTC

/bin/sh -c #(nop) COPY dir:38c97ecfc8f444a12c19097002e52ab92e315f570408b4bfa4f0a4044d9e080c in /

2020-08-05 16:09:46 UTC

/bin/sh -c #(nop) ARG BUILD_DATE

2020-08-05 16:09:47 UTC

/bin/sh -c #(nop) ARG VERSION

2020-08-05 16:09:47 UTC

/bin/sh -c #(nop) LABEL build_version=Linuxserver.io version:- 7eda9613-ls49 Build-date:- 2020-08-05T16:08:11+00:00

2020-08-05 16:09:47 UTC

/bin/sh -c #(nop) LABEL maintainer=TheLamer

2020-08-05 16:09:48 UTC

/bin/sh -c #(nop) ARG OVERLAY_VERSION=v2.0.0.1

2020-08-05 16:09:48 UTC

/bin/sh -c #(nop) ARG OVERLAY_ARCH=amd64

2020-08-05 16:09:48 UTC

/bin/sh -c #(nop) ARG DEBIAN_FRONTEND=noninteractive

2020-08-05 16:09:48 UTC

/bin/sh -c #(nop) ENV HOME=/root LANGUAGE=en_US.UTF-8 LANG=en_US.UTF-8 TERM=xterm

2020-08-05 16:09:49 UTC

/bin/sh -c #(nop) COPY file:a0afddf6c2c99dee6409f51005a22f49cffa569aa0e8ad133ed14c730847fd57 in /etc/apt/

2020-08-05 16:10:26 UTC

|5 BUILD_DATE=2020-08-05T16:08:11+00:00 DEBIAN_FRONTEND=noninteractive OVERLAY_ARCH=amd64 OVERLAY_VERSION=v2.0.0.1 VERSION=7eda9613-ls49 /bin/sh -c echo "**** Ripped from Ubuntu Docker Logic ****" && set -xe && echo '#!/bin/sh' > /usr/sbin/policy-rc.d && echo 'exit 101' >> /usr/sbin/policy-rc.d && chmod +x /usr/sbin/policy-rc.d && dpkg-divert --local --rename --add /sbin/initctl && cp -a /usr/sbin/policy-rc.d /sbin/initctl && sed -i 's/^exit.*/exit 0/' /sbin/initctl && echo 'force-unsafe-io' > /etc/dpkg/dpkg.cfg.d/docker-apt-speedup && echo 'DPkg::Post-Invoke { "rm -f /var/cache/apt/archives/*.deb /var/cache/apt/archives/partial/*.deb /var/cache/apt/*.bin || true"; };' > /etc/apt/apt.conf.d/docker-clean && echo 'APT::Update::Post-Invoke { "rm -f /var/cache/apt/archives/*.deb /var/cache/apt/archives/partial/*.deb /var/cache/apt/*.bin || true"; };' >> /etc/apt/apt.conf.d/docker-clean && echo 'Dir::Cache::pkgcache ""; Dir::Cache::srcpkgcache "";' >> /etc/apt/apt.conf.d/docker-clean && echo 'Acquire::Languages "none";' > /etc/apt/apt.conf.d/docker-no-languages && echo 'Acquire::GzipIndexes "true"; Acquire::CompressionTypes::Order:: "gz";' > /etc/apt/apt.conf.d/docker-gzip-indexes && echo 'Apt::AutoRemove::SuggestsImportant "false";' > /etc/apt/apt.conf.d/docker-autoremove-suggests && mkdir -p /run/systemd && echo 'docker' > /run/systemd/container && echo "**** install apt-utils and locales ****" && apt-get update && apt-get install -y apt-utils locales && echo "**** install packages ****" && apt-get install -y curl tzdata && echo "**** generate locale ****" && locale-gen en_US.UTF-8 && echo "**** add s6 overlay ****" && curl -o /tmp/s6-overlay.tar.gz -L "https://github.com/just-containers/s6-overlay/releases/download/${OVERLAY_VERSION}/s6-overlay-${OVERLAY_ARCH}.tar.gz" && tar xfz /tmp/s6-overlay.tar.gz -C / && echo "**** create abc user and make our folders ****" && useradd -u 911 -U -d /config -s /bin/false abc && usermod -G users abc && mkdir -p /app /config /defaults && mv /usr/bin/with-contenv /usr/bin/with-contenvb && echo "**** cleanup ****" && apt-get clean && rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/*

2020-08-05 16:10:31 UTC

/bin/sh -c #(nop) COPY dir:d9b4fd1bacede18445a775aacdc628686177aef2dd4806f656a0a9c0982d98df in /

2020-08-05 16:10:32 UTC

/bin/sh -c #(nop) ENTRYPOINT ["/init"]

2020-08-08 14:19:20 UTC

/bin/sh -c #(nop) COPY dir:83f2f9edc3b67d90292fc06c58163e2756e5a67dd047c1ce3c101ef16acb0763 in /

2020-08-08 14:19:20 UTC

/bin/sh -c #(nop) ARG BUILD_DATE

2020-08-08 14:19:20 UTC

/bin/sh -c #(nop) ARG VERSION

2020-08-08 14:19:20 UTC

/bin/sh -c #(nop) LABEL build_version=Linuxserver.io version:- 4.3-cli-ls34 Build-date:- 2020-08-08T14:18:44+00:00

2020-08-08 14:19:20 UTC

/bin/sh -c #(nop) LABEL maintainer=thelamer

2020-08-08 14:19:21 UTC

/bin/sh -c #(nop) ENV LIBVA_DRIVERS_PATH=/usr/lib/x86_64-linux-gnu/dri NVIDIA_DRIVER_CAPABILITIES=compute,video,utility NVIDIA_VISIBLE_DEVICES=all

2020-08-08 14:19:38 UTC

|2 BUILD_DATE=2020-08-08T14:18:44+00:00 VERSION=4.3-cli-ls34 /bin/sh -c echo "**** install runtime ****" && apt-get update && apt-get install -y i965-va-driver libexpat1 libgl1-mesa-dri libglib2.0-0 libgomp1 libharfbuzz0b libv4l-0 libx11-6 libxcb1 libxext6 libxml2 && echo "**** clean up ****" && rm -rf /var/lib/apt/lists/* /var/tmp/*

2020-08-08 14:19:38 UTC

/bin/sh -c #(nop) COPY dir:05f352c458a2328663b19eae941c6ad4703085442f49b63bc7ecf55804cdfe2f in /

2020-08-08 14:19:39 UTC

/bin/sh -c #(nop) ENTRYPOINT ["/ffmpegwrapper.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