Metadata-Version: 2.1
Name: dkill
Version: 0.0.3
Summary: Easy docker container pick-and-kill
Home-page: https://github.com/nano-labs/dkill
Author: Fabio Pachelli Pacheco
Author-email: nanook.labs@gmail.com
License: MIT
Download-URL: https://github.com/nano-labs/dkill/archive/release/0.0.3.zip
Keywords: docker utils kill
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >3.6.0
Description-Content-Type: text/markdown
Requires-Dist: bullet (>=2.2.0)

# dkill - Docker kill
Command to easily select docker containers to kill

![Usage gif](https://github.com/nano-labs/dkill/blob/main/imgs/dkill.gif)

## Install
```
pip3 install dkill
```

## Usage
```shell
> dkill
```
- SPACEBAR to select containers
- ENTER to kill selected containers

## How does it work
It uses `docker ps` command to list all running container then `docker kill <CONTAINER IDs>` to kill them

