This topic provides a very brief summary of the key terms you need to be familiar with when working with containers. For more information see The Docker Documentation site or Red Hat: Building, Running, and Managing Containers on Red Hat Enterprise Linux 8.
A container is usually completely isolated from the host environment, only able to access host files and ports if it has been configured to do so.
To run an image in a container you use the docker run or the podman run command.
A key use for Docker Hub is hosting images, but it is also used for activities such as user authentication and the automation of image building. Anyone is free to publish images to Docker Hub. No checking or verification is carried out on individuals or organizations who submit images to Docker Hub.
The commands you can specify in a Dockerfile range from the complex (such as specifying an existing image to use as a base) to the simple (such as copying files from one directory to another). For example, you can create a Dockerfile that uses the Ubuntu image as a base, but also installs the Apache web server, your application, and any required configuration options.
To build an image from a Dockerfile you use the docker build or the podman build command.
An image is a binary that includes all of the requirements for running a single container, as well as metadata describing its needs and capabilities.
An image includes everything that is needed to run an application, including the application's executable code, any software on which the application depends, and any required configuration settings. You can build your own images (using a Dockerfile) or use images that have been built by others and then made available in a registry.
To build an image from a Dockerfile you use the docker build or the podman build command.
To run an image in a container you use the docker run or the podman run command.