Como criar uma imagem Docker baixando um ISO usando Packer?

É possível criar imagens do zero usando o Packer baixando um ISO da internet.

Visar: para criar imagens Docker baixando um ISO usando Packer

Tentativa

Tentativa 1

É possível importar uma imagem Docker

[username@hostname]$ cat docker.json {    "builders":[{        "type": "docker",        "image": "ubuntu",        "export_path": "image.tar"    }]}

usando Packer:

[username@hostname packer]$ packer build docker.json docker output will be in this color.==> docker: Creating a temporary directory for sharing data...==> docker: Pulling Docker image: ubuntu==> docker: Starting docker container...==> docker: Exporting the container==> docker: Killing the container: 6e0e5488d8b4f97667123ea965a561c91122f3efc6ef4b86a7c40560714d6577Build 'docker' finished.==> Builds finished. The artifacts of successful builds are:--> docker: Exported Docker file: image.tar

Tentativa 2

Alterar o tipo de construtor de um empacotador.json que é usado para criar uma imagem virtualbox para docker resultado:

[username@hostname]$ packer build docker-scratch.json docker output will be in this color.15 error(s) occurred:* unknown configuration key: "boot_command"* unknown configuration key: "boot_wait"...* unknown configuration key: "vboxmanage"* unknown configuration key: "virtualbox_version_file"

Problema

No entanto, se uma imagem do docker precisa ser criada, várias imagens de base podem ser baixadas, mas também é possível baixar um ISO e transformá-lo em uma imagem do docker?


Referência

Exemplo Básico: Exportação

enter image description here

Sim, é possível inicializar suas próprias imagens. Verifique o mkimage-* scripts do contrib Directorio.