Created
          December 3, 2023 15:52 
        
      - 
      
- 
        Save mikaelvesavuori/af64d54bf7478fdd4ee74f08a297c3aa to your computer and use it in GitHub Desktop. 
    Podman cheatsheet for common basic commands.
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # Build and tag image | |
| podman build -t <IMAGE>:<TAG> . | |
| # List images | |
| podman images | |
| # List processes | |
| podman ps | |
| # Kill a process | |
| podman kill <PROCESS_ID> | |
| # Run an image | |
| podman run <IMAGE> | |
| # Run an image in interactive mode | |
| podman run <IMAGE> -i | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment