mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-14 22:47:45 +08:00
1.0 KiB
1.0 KiB
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 . |