1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-01-14 22:47:45 +08:00
ohmyzsh-mirror/plugins/packer/README.md
冯不游 8d1bd7cc22 feat(packer): add packer plugin
add some alias
2023-02-22 20:00:18 +08:00

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 .