Skip to main content

Simple bulk operations for Docker

Project description

wrfy /wharfie/

minimal CLI tool to smooth your docker local dev experience

wrfy provides a dozen or so commands to automate common operations on a docker development or CI host. Want to pull all images? Delete images matching a regexp? Clean up dangling volumes? You've come to the right place.

installation

$ pip3 install wrfy

wrfy commands

doctor

wrfy doctor will check your docker host for common issues. The checks are:

  • containers running from an old version of the image they were launched from. for example, if you were to do docker run -it alpine:latest /bin/sh, leave that container going, and then pull a newer version of alpine:latest, wrfy will let you know that your Alpine container is running from an old image.
  • dangling volumes. dangling volumes, which are not attached to a container.
  • dangling images. dangling images, which do not have a tag.
  • stopped containers. docker hosts can build up a large number of stopped containers whose purpose was ephemeral.

Each check suggests a wrfy tool to address each particular issue identified.

kill-all

wrfy kill-all will kill all running containers. It asks for confirmation, unless --force is passed as an argument.

pull-all

wrfy pull-all will pull all images present on the docker host. This is very useful when you want to make sure everything is up to date.

rm-matching

wrfy rm-matching <pattern> will remove containers matching the provided glob pattern. If -e is passed, the pattern is interpreted as a regular expression. It asks for confirmation, unless --force is passed as an argument.

A useful command is wrfy rm-matching -e '^[a-z]+_[a-z]+$', which will remove all containers with a name comprised of two words seperated by an underscore. This will match containers with names automatically generated by docker.

rm-stopped

wrfy rm-stopped will remove all containers which are not running. It is somewhat of a blunt instrument, you might want to use rm-matching instead. It asks for confirmation, unless --force is passed as an argument.

rmi-dangling

wrfy rmi-dangling will remove all dangling images - images which haven't got a name. It asks for confirmation, unless --force is passed as an argument.

rmi-matching

wrfy rmi-matching <pattern> will remove images matching the provided glob pattern. If -e is passed, the pattern is interpreted as a regular expression. It asks for confirmation, unless --force is passed as an argument.

A useful command to clean up after docker-compose is wrfy rmi-matching -e '^[a-z]+_[a-z]+:latest$', which will remove all containers with a name comprised of two words seperated by an underscore, and a tag of latest. Such images probably came from docker-compose.

rmv-dangling

wrfy rmv-dangling will remove all dangling volumes - volumes not attached to any container. It asks for confirmation, unless --force is passed as an argument.

scrub

wrfy scrub chains together rm_stopped, rmi_dangling, and rmv_dangling. It asks for confirmation at each stage, unless --force is passed as an argument.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wrfy-0.9.0.tar.gz (19.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

wrfy-0.9.0-py3-none-any.whl (20.3 kB view details)

Uploaded Python 3

File details

Details for the file wrfy-0.9.0.tar.gz.

File metadata

  • Download URL: wrfy-0.9.0.tar.gz
  • Upload date:
  • Size: 19.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.5 CPython/3.8.2 Darwin/19.4.0

File hashes

Hashes for wrfy-0.9.0.tar.gz
Algorithm Hash digest
SHA256 2207ead47a5a2c77cd562ca2fff177018005684454ea0941eca4b2efeda27c4a
MD5 4bf3357175af37a75b8af180e3914025
BLAKE2b-256 9a372ad369813a9fd4f8cac6dc3765d3937a542c558b098b185473f83b2a494b

See more details on using hashes here.

File details

Details for the file wrfy-0.9.0-py3-none-any.whl.

File metadata

  • Download URL: wrfy-0.9.0-py3-none-any.whl
  • Upload date:
  • Size: 20.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.5 CPython/3.8.2 Darwin/19.4.0

File hashes

Hashes for wrfy-0.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 97f328a9b8125f1ccda0b0b36ec48ffd0dd5059897388b9328c1d342300151cf
MD5 b51e5c37c11012f4f5d8b10446c82004
BLAKE2b-256 8ca5d870c474180d6c54b4a5368b442c7e87594926022a17226b61eba18528bf

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page