Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

podmanpodman 搜索

Agent Skill

podman 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

242

周安装

10

GitHub Stars

公开资料未说明

下载量

79
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:podman(podman 搜索)
来源仓库:https://github.com/wawrz-dev/claude-skills
仓库路径:skills/podman
安装命令:
npx skills add https://github.com/wawrz-dev/claude-skills --skill podman
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/wawrz-dev/claude-skills --skill podman

简介

podman 用于查找、检索和筛选相关信息,适合快速定位候选结果。

  • 适用于需要根据关键词或任务场景从来源线索中获取信息的场景。
  • 通过 npx skills add 命令安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件读写操作。
  • 注意该技能当前无原始 SKILL.md 内容可参考,实际功能以仓库实现为准。

SKILL.md

Why This Skill Exists

Podman is a drop-in replacement for Docker with the same CLI, but its daemonless, rootless-by-default architecture creates subtle differences that cause real bugs — permission errors on volume mounts, compose networking surprises, port binding failures. This skill prevents those issues by giving you the right mental model and the correct flags upfront.

The golden rule: podman accepts the same flags as docker in almost all cases. When it doesn't, this skill tells you why and what to use instead.


Architecture: How Podman Differs from Docker

AspectDockerPodman
Daemondockerd (root, always running)None — fork/exec per container
Default privilegesRoot (rootless optional)Rootless (rootful optional)
Socket/var/run/docker.sock$XDG_RUNTIME_DIR/podman/podman.sock
Image storage (rootless)/var/lib/docker~/.local/share/containers/storage
Networking backendDocker bridgeNetavark (default since 4.0)
Rootless networkingRootlessKit / VPNKitPasta (default) or slirp4netns
Build backendBuildKitBuildah (integrated)
Composedocker compose (built-in plugin)podman compose (thin wrapper)
OrchestrationSwarmK8s YAML via podman play kube

The practical consequence: root and rootless Podman are separate universes. podman images and sudo podman images show different image stores. Never mix them accidentally.


CLI Quick Reference

Direct Docker equivalents (identical syntax)

These commands work exactly the same — just replace docker with podman:

run, ps, pull, push, build, exec, logs, stop, start, rm, rmi,
images, inspect, cp, export, import, tag, commit, login, logout,
volume create|ls|rm|inspect|prune,
network create|ls|rm|inspect|connect|disconnect|prune

Podman-only commands

podman pod create|ls|stop|rm|inspect   # Kubernetes-style pod grouping
podman generate kube <container>       # Export to K8s YAML
podman play kube deployment.yaml       # Run K8s YAML locally
podman generate systemd --new <ctr>    # Create systemd unit
podman machine init|start|stop|ssh     # Manage Linux VM (macOS/Windows)
podman system service                  # Start Docker-compatible API socket
podman unshare                         # Run command in user namespace

Containerfile / Dockerfile

Podman looks for Containerfile first, then Dockerfile. The syntax is identical — same FROM, RUN, COPY, etc. Both produce OCI-compliant images.

podman build -t myimage .              # Finds Containerfile or Dockerfile
podman build -f Dockerfile -t myimage . # Explicit file

Build differences from Docker:

  • Backend is Buildah, not BuildKit. DOCKER_BUILDKIT=1 has no effect.
  • RUN --mount=type=cache works in Buildah >= 1.24
  • --format docker (default) or --format oci controls image format
  • Multi-stage builds and layer caching work the same

Podman Compose

podman compose is a thin wrapper that delegates to an external provider:

  1. docker-compose — takes precedence if installed
  2. podman-compose (pip install podman-compose) — community Python tool

The wrapper sets env vars so the provider talks to Podman's socket.

# Override which provider is used
export PODMAN_COMPOSE_PROVIDER=/path/to/provider

# Suppress "external compose" warnings
export PODMAN_COMPOSE_WARNING_LOGS=false

Using docker-compose with Podman's socket directly

# Start Podman's Docker-compatible API
podman system service --time=0 unix:///tmp/podman.sock &
export DOCKER_HOST=unix:///tmp/podman.sock
docker-compose up -d

Compose gotchas vs Docker Compose

  • podman-compose may not support every Compose directive — test complex configs
  • depends_on with condition: service_healthy works but healthcheck timing can differ
  • network_mode: host still has user-namespace isolation in rootless mode
  • Bind mounts may need SELinux labels (:z or :Z) on RHEL/Fedora — see Volumes section
  • Build context uses Buildah instead of BuildKit (transparent, but BuildKit-specific Dockerfile syntax may not work in older Podman versions)

Rootless Containers

Rootless is the default and the main source of "it works in Docker but not Podman" bugs.

How it works: your container's root (UID 0) maps to your host UID via user namespaces. Subordinate UIDs are configured in /etc/subuid and /etc/subgid.

Common rootless issues and fixes

Port binding below 1024:

# Fails in rootless:
podman run -p 80:80 nginx

# Fix: lower the unprivileged port floor
sudo sysctl net.ipv4.ip_unprivileged_port_start=80

# Or just use a high port (preferred):
podman run -p 8080:80 nginx

Volume permission errors:

# Problem: container expects UID 0 but host files are owned by your UID
# Fix: --userns=keep-id maps your host UID into the container
podman run --userns=keep-id -v ./data:/data:Z myimage

# Map to a specific container user
podman run --userns=keep-id:uid=1000,gid=1000 -v ./data:/data myimage

"Image not found" after using sudo:

# These are SEPARATE image stores:
podman pull myimage          # your user's storage
sudo podman pull myimage     # root's storage
# Don't mix them. Pick one.

Networking

Netavark (default backend since Podman 4.0)

  • DNS resolution between containers on the same network works automatically
  • Default bridge subnet: 10.88.0.0/16

Rootless networking uses Pasta (default)

  • Copies host IPs into container namespace (no NAT)
  • Alternative: slirp4netns (older, --network=slirp4netns)
# Create and use a custom network
podman network create mynet
podman run --network mynet --name web nginx
podman run --network mynet alpine ping web   # DNS resolves by name

# Connect a running container
podman network connect mynet existing-container

Volumes

SELinux labels (RHEL, Fedora, CentOS)

# :z — shared label, multiple containers can access
podman run -v /host/path:/ctr/path:z myimage

# :Z — private label, only this container
podman run -v /host/path:/ctr/path:Z myimage

# On macOS or non-SELinux systems, :z/:Z are safely ignored

Auto-fix ownership with :U

# :U automatically adjusts mounted directory ownership to match the container user
# This is the simplest fix for rootless UID mapping permission issues
podman run -v ./data:/app/data:U myimage

# Combine with SELinux label on Fedora/RHEL:
podman run -v ./data:/app/data:U,Z myimage

Podman-specific volume features

podman volume export myvol -o backup.tar   # Backup
podman volume import myvol backup.tar      # Restore
podman volume mount myvol                  # Mount to host filesystem

Podman Machine (macOS)

Containers are Linux processes, so macOS needs a Linux VM. Podman Machine manages this.

# First-time setup
podman machine init --cpus 4 --memory 8192 --disk-size 100
podman machine start

# Verify
podman machine list
podman info

# Day-to-day
podman machine stop
podman machine start
podman machine ssh            # Shell into the VM

# Adjust resources (machine must be stopped first)
podman machine stop
podman machine set --cpus 6 --memory 16384
podman machine start

# Nuclear option — destroys ALL machines, images, containers
podman machine reset

macOS-specific gotchas

  • Volume mounts go through virtio-fs to share host dirs with the VM — file watching for hot-reload may be slower than Docker Desktop
  • Default machine name: podman-machine-default
  • Machine config lives in ~/.config/containers/podman/machine/
  • If podman commands fail with "cannot connect", run podman machine start

Makefile Patterns

Always use a CONTAINER_ENGINE variable — never hardcode podman or docker in targets. This is the single most important pattern for portable Makefiles, because it lets Docker users run the same targets without editing anything.

# These two lines go at the top of the Makefile, before any targets.
# Every container command below MUST use these variables, not bare podman/docker.
CONTAINER_ENGINE ?= podman
COMPOSE ?= $(CONTAINER_ENGINE) compose

.PHONY: up down build shell

up:
	$(COMPOSE) up -d

down:
	$(COMPOSE) down

build:
	$(COMPOSE) build

shell:
	$(COMPOSE) exec agent-service /bin/bash

# Docker users override with: make up CONTAINER_ENGINE=docker

Migration Cheat Sheet: Docker → Podman

Step 1 — Quick alias (for muscle memory):

alias docker=podman

Step 2 — Compose:

# Option A: podman-compose
pip install podman-compose && podman-compose up -d

# Option B: podman compose wrapper
podman compose up -d

# Option C: docker-compose with Podman socket
systemctl --user start podman.socket
export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/podman/podman.sock
docker-compose up -d

Step 3 — Fix common issues:

SymptomCauseFix
Permission denied on bind mountRootless UID mapping--userns=keep-id and/or :Z suffix
Cannot bind port 80Rootless port restrictionsysctl net.ipv4.ip_unprivileged_port_start=80 or use port ≥1024
"Short-name resolution" promptPodman doesn't default to docker.ioSet unqualified-search-registries = ["docker.io"] in /etc/containers/registries.conf
Image missing after sudoRoot/rootless are separate storesStay consistent — don't mix sudo podman and podman
Docker socket expected by a toolNo daemon = no socket by defaultsystemctl --user enable --now podman.socket + set DOCKER_HOST

Out of Scope

This skill does not cover: Kubernetes deployment (use kubectl/Helm), Docker Swarm (not supported), Podman Desktop GUI, standalone Buildah/Skopeo usage, or CRI-O.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.91%
按下载量换算29

Claude

30.59%
按下载量换算24

Cursor

18.15%
按下载量换算14

Gemini CLI

8.8%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/wawrz-dev/claude-skills --skill podman 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills