├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── awesomebot.yml │ └── mega-linter.yml ├── .gitignore ├── CodeOfConduct.md ├── Contributing.md ├── LICENSE ├── ReadMe.md ├── bin ├── boot2docker-timesync ├── dive ├── docker-check-for-image-update ├── docker-clean ├── docker-container-volumes ├── docker-create-backup-container ├── docker-delete-stopped-containers ├── docker-here ├── docker-ip ├── docker-last ├── docker-lint ├── docker-pid ├── docker-ps-cleanup ├── docker-purge-unnamed-images ├── docker-remove-dangling-images ├── docker-runc ├── docker-runinc ├── docker-shell ├── docker-showipc ├── docker-stopc ├── docker-superclean ├── docker-tags ├── docker-update-all-images ├── fzf-docker-attach ├── fzf-docker-rm └── fzf-docker-stop └── docker-helpers.plugin.zsh /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/awesomebot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/.github/workflows/awesomebot.yml -------------------------------------------------------------------------------- /.github/workflows/mega-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/.github/workflows/mega-linter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CodeOfConduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/CodeOfConduct.md -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/LICENSE -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/ReadMe.md -------------------------------------------------------------------------------- /bin/boot2docker-timesync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/boot2docker-timesync -------------------------------------------------------------------------------- /bin/dive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/dive -------------------------------------------------------------------------------- /bin/docker-check-for-image-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/docker-check-for-image-update -------------------------------------------------------------------------------- /bin/docker-clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/docker-clean -------------------------------------------------------------------------------- /bin/docker-container-volumes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/docker-container-volumes -------------------------------------------------------------------------------- /bin/docker-create-backup-container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/docker-create-backup-container -------------------------------------------------------------------------------- /bin/docker-delete-stopped-containers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/docker-delete-stopped-containers -------------------------------------------------------------------------------- /bin/docker-here: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/docker-here -------------------------------------------------------------------------------- /bin/docker-ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/docker-ip -------------------------------------------------------------------------------- /bin/docker-last: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/docker-last -------------------------------------------------------------------------------- /bin/docker-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/docker-lint -------------------------------------------------------------------------------- /bin/docker-pid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/docker-pid -------------------------------------------------------------------------------- /bin/docker-ps-cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/docker-ps-cleanup -------------------------------------------------------------------------------- /bin/docker-purge-unnamed-images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/docker-purge-unnamed-images -------------------------------------------------------------------------------- /bin/docker-remove-dangling-images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/docker-remove-dangling-images -------------------------------------------------------------------------------- /bin/docker-runc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/docker-runc -------------------------------------------------------------------------------- /bin/docker-runinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/docker-runinc -------------------------------------------------------------------------------- /bin/docker-shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/docker-shell -------------------------------------------------------------------------------- /bin/docker-showipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/docker-showipc -------------------------------------------------------------------------------- /bin/docker-stopc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/docker-stopc -------------------------------------------------------------------------------- /bin/docker-superclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/docker-superclean -------------------------------------------------------------------------------- /bin/docker-tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/docker-tags -------------------------------------------------------------------------------- /bin/docker-update-all-images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/docker-update-all-images -------------------------------------------------------------------------------- /bin/fzf-docker-attach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/fzf-docker-attach -------------------------------------------------------------------------------- /bin/fzf-docker-rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/fzf-docker-rm -------------------------------------------------------------------------------- /bin/fzf-docker-stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/bin/fzf-docker-stop -------------------------------------------------------------------------------- /docker-helpers.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixorn/docker-helpers.zshplugin/HEAD/docker-helpers.plugin.zsh --------------------------------------------------------------------------------