mirror of
https://github.com/containers/podman.git
synced 2025-06-17 23:20:59 +08:00

* Use podman library for access * Verbose error checking * Planned windows and macosx ports Signed-off-by: Jhon Honce <jhonce@redhat.com>
52 lines
1.7 KiB
Python
52 lines
1.7 KiB
Python
"""Remote client command for deleting containers."""
|
|
import sys
|
|
|
|
import podman
|
|
|
|
from .. import AbstractActionBase
|
|
|
|
|
|
class Rm(AbstractActionBase):
|
|
"""Class for removing containers from storage."""
|
|
|
|
@classmethod
|
|
def subparser(cls, parent):
|
|
"""Add Rm command to parent parser."""
|
|
parser = parent.add_parser('rm', help='delete container(s)')
|
|
parser.add_argument(
|
|
'-f',
|
|
'--force',
|
|
action='store_true',
|
|
help=('force delete of running container(s).'
|
|
' (default: %(default)s)'))
|
|
parser.add_argument(
|
|
'targets', nargs='*', help='container id(s) to delete')
|
|
parser.set_defaults(klass=cls, method='remove')
|
|
|
|
def __init__(self, args):
|
|
"""Construct Rm class."""
|
|
super().__init__(args)
|
|
if len(args.targets) < 1:
|
|
raise ValueError('You must supply at least one container id'
|
|
' or name to be deleted.')
|
|
|
|
def remove(self):
|
|
"""Remove container(s)."""
|
|
for id in self._args.targets:
|
|
try:
|
|
ctnr = self.client.containers.get(id)
|
|
ctnr.remove(self._args.force)
|
|
print(id)
|
|
except podman.ContainerNotFound as e:
|
|
sys.stdout.flush()
|
|
print(
|
|
'Container {} not found.'.format(e.name),
|
|
file=sys.stderr,
|
|
flush=True)
|
|
except podman.ErrorOccurred as e:
|
|
sys.stdout.flush()
|
|
print(
|
|
'{}'.format(e.reason).capitalize(),
|
|
file=sys.stderr,
|
|
flush=True)
|