Short Description
Docker image that has systems administration tools used on a Fedora Atomic host.
Full Description
dockerfiles-fedora-tools
Fedora Dockerfile for tools image
Tools image is intended to be used as Super Privileged Container (SPC) to extend the set of tools provided by Atomic Host.
To build, copy the sources down and call:
# docker build --rm -t <username>/tools .
To run:
- Not running on Atomic Host? Install the
atomic
tool with:# dnf install atomic
If you are at Atomic Host, you have
atomic
tool preinstalled and thus you can directly call# atomic run <username>/tools
to get a shell in the tools container, or
# atomic run <username>/tools <command>
to run a specific command. For example:
# atomic run <username>/tools man systemd
atomic
tool uses image labels to figure out the docker run
command. You can check the RUN label by calling
docker inspect -f '{{.Config.Labels.RUN}}' <username>/tools