Open19

Podmanを試そう

You-sakuYou-saku

searchで探せるらしいので

podman search nginx

実行したら...

Cannot connect to Podman. Please verify your connection to the Linux system using `podman system connection list`, or try `podman machine init` and `podman machine start` to manage a new Linux VM

エラーが出た

You-sakuYou-saku
podman machine init

このとき接続の許可を求められた
迷わず「許可」をクリック

You-sakuYou-saku

一番上にあるdocker.io/library/nginxを使う
Official build of Nginx.と書いてあるし安全っぽい

You-sakuYou-saku
podman pull docker.io/library/nginx
podman image list

imageの一覧にnginxがいる

REPOSITORY               TAG         IMAGE ID      CREATED      SIZE
docker.io/library/nginx  latest      eb4a57159180  8 hours ago  191 MB
You-sakuYou-saku
podman run --name docker-nginx -p 8080:80 docker.io/nginx

警告が出たが、これも迷わず「許可」をクリック

You-sakuYou-saku

削除したいとき

  1. ctrl + c
  2. podman ps --all
  3. NAMESにある名前を確認
  4. podman rm ${NAMES}
  5. podman ps --all