Podman: Difference between revisions
Jump to navigation
Jump to search
Created page with "=Introduction= This is the initial page. Started this because I run a keycloak server. =Command= <syntaxhighlight lang="bash"> # Delete all containers podman rmi $(podman imag..." |
|||
Line 11: | Line 11: | ||
# Run bash shell in bash | # Run bash shell in bash | ||
podman exec -it keycloak bash | podman exec -it keycloak bash | ||
cp a b | |||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 03:27, 3 April 2021
Introduction
This is the initial page. Started this because I run a keycloak server.
Command
# Delete all containers
podman rmi $(podman images -qa) -f
# List Pods
podman pod list
# List containers
podman pod container list
# Run bash shell in bash
podman exec -it keycloak bash
cp a b