Ubuntu 22.04
Sponsored Link

Podman : 一般ユーザーで利用する2022/04/28

 
一般ユーザーでも [Podman] コマンドは利用可能です。
[1] デフォルトで、ユーザー名前空間で使用される サブ UID/GID が一般ユーザーに割り当てられます。
# デフォルトの名前空間の数

root@dlp:~#
cat /proc/sys/user/max_user_namespaces

63572
# サブ UID/GID マッピング ファイルは以下
# [100000:65536] ⇒ [ubuntu] ユーザーは コンテナー内では
# 100000~165535 (100000 + 65536 - 1) の間の UID がプロセスの実行に使用される

root@dlp:~#
cat /etc/subuid

ubuntu:100000:65536
root@dlp:~#
cat /etc/subgid

ubuntu:100000:65536
# ユーザーを新規追加すると サブ UID/GID マッピング ファイルにも自動で登録される
# コンテナー内でプロセスの実行に使用される UID が各ユーザー間で重複しないように
# n=0, n++ とすると
# [開始 UID/GID = 100000 + (65536 * n)]
# [終了 UID/GID = (開始 UID/GID) + 65536 - 1] となる

root@dlp:~#
adduser jammy

root@dlp:~#
adduser jellyfish

root@dlp:~#
cat /etc/subgid /etc/subgid

ubuntu:100000:65536
jammy:165536:65536
jellyfish:231072:65536
ubuntu:100000:65536
jammy:165536:65536
jellyfish:231072:65536
[2] 一般ユーザーで [podman] 使用可能です。
ubuntu@dlp:~$
podman pull ubuntu

ubuntu@dlp:~$
podman images

REPOSITORY                TAG         IMAGE ID      CREATED     SIZE
docker.io/library/ubuntu  latest      3f4714ee068a  6 days ago  80.3 MB

ubuntu@dlp:~$
podman run ubuntu echo "run rootless containers"

run rootless containers
# コンテナー関連ファイルは [$HOME/.local] 配下に保存される

ubuntu@dlp:~$
ll ~/.local/share/containers/storage

total 40
drwx------ 9 ubuntu ubuntu 4096 Apr 28 07:15 ./
drwx------ 4 ubuntu ubuntu 4096 Apr 28 07:16 ../
drwx------ 2 ubuntu ubuntu 4096 Apr 28 07:15 libpod/
drwx------ 2 ubuntu ubuntu 4096 Apr 28 07:15 mounts/
drwx------ 5 ubuntu ubuntu 4096 Apr 28 07:16 overlay/
drwx------ 3 ubuntu ubuntu 4096 Apr 28 07:16 overlay-containers/
drwx------ 3 ubuntu ubuntu 4096 Apr 28 07:16 overlay-images/
drwx------ 2 ubuntu ubuntu 4096 Apr 28 07:16 overlay-layers/
-rw-r--r-- 1 ubuntu ubuntu   64 Apr 28 07:16 storage.lock
drwx------ 2 ubuntu ubuntu 4096 Apr 28 07:15 tmp/
-rw-r--r-- 1 ubuntu ubuntu    0 Apr 28 07:15 userns.lock

# Pod も作成可

ubuntu@dlp:~$
podman pod create -p 8081:80 -n test-pod

ubuntu@dlp:~$
podman pod ls

POD ID        NAME        STATUS      CREATED        INFRA ID      # OF CONTAINERS
477f00ef3630  test-pod    Created     2 seconds ago  a09898b74a92  1

# ポートマッピングについては
# 一般ユーザーでは ホスト側の [1024] 未満のポートは使用不可
# [1024] 以上は使用可

ubuntu@dlp:~$
podman run -d -p 1023:80 srv.world/ubuntu-nginx

Error: rootlessport cannot expose privileged port 1023, you can add 'net.ipv4.ip_unprivileged_port_start=1023' to /etc/sysctl.conf (currently 1024), or choose a larger port number (>= 1024): listen tcp 0.0.0.0:1023: bind: permission denied
ubuntu@dlp:~$
podman run -d -p 1024:80 srv.world/ubuntu-nginx

ubuntu@dlp:~$
podman ps

CONTAINER ID  IMAGE                          COMMAND               CREATED        STATUS            PORTS                 NAMES
1c960231dfed  srv.world/ubuntu-nginx:latest  /usr/sbin/nginx -...  6 seconds ago  Up 6 seconds ago  0.0.0.0:1024->80/tcp  priceless_engelbart
関連コンテンツ