Podman

From LemonWiki共筆
Revision as of 14:57, 22 August 2022 by Unknown user (talk)
Jump to navigation Jump to search

"Podman is a daemonless container engine for developing, managing, and running OCI Containers on your Linux System." (Cited from Podman)

List images

  • docker image ls [OPTIONS] [REPOSITORY[:TAG]] [1]
  • podman images [options] [image] [2]

List running containers

  • docker container ls [OPTIONS] [3]
  • podman ps [4]

Build an image from a Dockerfile

  • docker build [OPTIONS] PATH | URL | - [5]
  • podman build [options] [context] e.g. podman build -f ./Dockerfile [6]


References