update docs

This commit is contained in:
2025-04-22 16:22:05 +02:00
parent 3c938af6c5
commit 317e94edf0

View File

@@ -2,6 +2,18 @@
This Terraform module serves as an abstraction to builds machine images from Packer configurations through Docker. This Terraform module serves as an abstraction to builds machine images from Packer configurations through Docker.
A pre-existing Docker image with Packer installed is required. A pre-existing Docker image with Packer installed is required.
You may run the example to build a RaspiOS ARM64 image:
```
pushd examples/raspios
terraform init
terraform apply
docker logs -f $(docker ps -q -f name=packer-builder-arm)
popd
```
## Build Progress
The build runs in the background and outpout the image to the local directory. The build runs in the background and outpout the image to the local directory.
To see the build progress, you need to show the Docker logs like this: To see the build progress, you need to show the Docker logs like this:
``` ```