Sign inSign up

itsthenetwork/alpine-dmidecode

By itsthenetwork

Updated almost 8 years ago

Alpine Linux v3.8.1 with dmidecode v3.1 installed at /usr/sbin/dmidecode. 4MB.

Image
1

9.9K

itsthenetwork/alpine-dmidecode repository overview

A handy basic image comprising of;

For previous tag 1:

Usage

I'd expect you use this image as a simple analysis tool.

Pulling

Use this command to pull the image manually before runtime:

sudo docker pull itsthenetwork/alpine-dmidecode:latest

Runtime

This command will start the container interactively and display the BIOS version and then be removed.

sudo docker run -it --name=dmi --rm --privileged itsthenetwork/alpine-dmidecode -s bios-version

Additional Packages

If you wanted to install additional packages and build your own image based upon this one you'd start your Dockerfile like this:

FROM itsthenetwork/alpine-dmidecode:latest

RUN apk -add U -v package_name package_name

...
Dockerfile

The Dockerfile used to create this image is available at the root of the file system, here it is anyway:

FROM alpine:latest
LABEL maintainer "Steven Iveson <[email protected]>"
COPY Dockerfile /Dockerfile

RUN apk --no-cache --update --verbose add grep bash dmidecode && \
    rm -rf /var/cache/apk/* /tmp/* /sbin/halt /sbin/poweroff /sbin/reboot

ENTRYPOINT ["/usr/sbin/dmidecode"]

Tag summary

Content type

Image

Digest

Size

3.5 MB

Last updated

almost 8 years ago

docker pull itsthenetwork/alpine-dmidecode