mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-30 09:40:09 +00:00
8d1bd7cc22
add some alias |
||
---|---|---|
.. | ||
README.md | ||
terraform.plugin.zsh |
Packer plugin
Plugin for Packer, a tool from Hashicorp for managing docker safely and efficiently.
It adds aliases for packer
To use it, add packer
to the plugins array of your ~/.zshrc
file:
plugins=(... packer)
Requirements
Aliases
Alias | Command |
---|---|
pkr |
packer |
pkri |
packer init . |
pkrf |
packer fmt . -recursive |
pkrv |
packer validate . |
pkrb |
packer build . |
pkrall |
packer init . && packer fmt . -recursive && packer validate . && packer build . |