Packer
https://gyazo.com/34d2ac56f36bd0895178571bd9d27c09
Packer lets you create identical machine images for multiple platforms from a single source configuration. A common use case is creating golden images for organizations to use in cloud infrastructure.
マシンイメージの自動生成/管理を行なうコマンドライン(CLI)ツールである。 code:bash
docker run -it \
--mount type=bind,source=$(pwd)/pkr,target=/mnt/pkr \
hashicorp/packer:latest build /mnt/pkr/main.json
Reference