Containers Flashcards
What are key technologies needed in containers?
1) namespaces
2) cgroups
3) SELinux
4) Sec Comp
What is the purpose of cgroups?
set limitations on system resources such as memory and cpu.
What is the purpose of sec comp?
define allow and deny list of system calls from namespaces.
Known container runtimes
1) Cri-O
2) Docker
3) Runc
Purpose of container management tools
Allows you to communicate with the container engine / runtime
Examples of container management tools
1) Docker
2) Podman
3) K8S
Install podman
dnf install container-tools
List containers currently running
podman ps
List images downloaded for your user account
podman images
Download image quay.io/centos7/nginx-114-centos7
podman pull quay.io/centos7/nginx-114-centos7
How to find images
podman search
Delete image from your local account
podman image rm quay.io/centos7/nginx-114-centos7
Run container quay.io/centos7/nginx-114-centos7
podman run -d quay.io/centos7/nginx-114-centos7
What is your container storage location?
~/.local/share/containers/storage
Start an interactive terminal to the container called relaxed_dirac
podman exec -it relaxed_dirac bash
List all podman commands
1) podman tab tab
2) man podman
Use an image file stored on your local storage
podman load
Start a container with name silabus
podman run -d --name sylabus quay.io/centos7/nginx-114-centos7
Login into a registry
podman login -u user -p password quay.io
List images available in a registry
podman search registry.lab.example.com/
(with ending slash)
Without downloading an image review its metadata
skopeo inspect docker://quay.io/ubi8/python-38
Build an image using a container file
podman build -t python39:1.0 path/to/container/file/.
Show the property of an image that is in local storage
podman inspect localhost/python39:1.0
podman create
create a container without starting it
Copy a file from local to inside a container
podman cp /path/to/file python38:/target/path
Run container and forward its internal port 80 to host port 8080
podman run -d -p 8080:80 quay.io/cloud-bulldozer/nginx
Run container and mount folder /tmp/html into /var/httpd/html
podman run -d -v /tmp/html:/var/httpd/html:Z quay.io/cloud-bulldozer/nginx:latest
Read a container logs
podman logs compassionate_engelbart
Launch documentation on podman run
man podman-run
Create a network
podman network create --subnet 10.89.1.0/24 --gateway 10.89.1.1 frontend
Run a container attaching it to a network previously created
podman run -d --network frontend quay.io/cloud-bulldozer/nginx:latest
podman unshare chown 27:27 databases
Change the ownership of databases directory on the container host so that inside the container user id 27 has access to the databases folder
Connect a running container to an existing network
podman network connect backend engel
Where is systemd storing configuration for user services?
~/.config/systemd/user
Configure container engel to start as a systemd service
mkdir -pv ~/.config/systemd/user && cd $_
podman generate systemd --name engel --files --new
podman stop engel && podman rm engel
systemctl --user daemon-reload
systemctl --user enable --now container-engel
loginctl enable-linger