Size: 1133
Comment:
|
Size: 1494
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 3: | Line 3: |
* https://docs.podman.io/en/latest/index.html | |
Line 5: | Line 6: |
Podman relies on an OCI compliant Container Runtime (runc, crun, runv, etc) to interface with the operating system and create the running containers. There is a RESTFul API to manage containers. We also have a remote Podman client that can interact with the RESTFul service. |
|
Line 22: | Line 27: |
FROM alpine:3.16 | FROM alpine:3.17 |
Line 30: | Line 35: |
#select docker.io/library/alpine:3.16 | #select docker.io/library/alpine:3.17 |
Line 36: | Line 41: |
podman stop alpine-container |
podman
Podman is a daemonless container engine for developing, managing, and running OCI Containers on your Linux System. Containers can either be run as root or in rootless mode.
Podman relies on an OCI compliant Container Runtime (runc, crun, runv, etc) to interface with the operating system and create the running containers.
There is a RESTFul API to manage containers. We also have a remote Podman client that can interact with the RESTFul service.
Debian install
1 sudo apt -y install podman
2 podman info
3
4 podman info
5 mkdir -p ~/.config/containers/
6 touch $HOME/.config/containers/registries.conf
7 echo "unqualified-search-registries = ['registry.fedoraproject.org', 'registry.access.redhat.com', 'registry.centos.org', 'docker.io']" > $HOME/.config/containers/registries.conf
8 cat $HOME/.config/containers/registries.conf
9 podman search alpine
Run Alpine
Containerfile
Steps
1 podman build -t alpine-image .
2 #select docker.io/library/alpine:3.17
3 podman run -p 8081:8081 -d -it --rm --name alpine-container --mount type=bind,source="$(pwd)",target=/app alpine-image
4 podman ps
5 podman exec -it env-docker-alpine-container sh
6 cat /etc/os-release
7 exit
8 podman stop alpine-container