Es posible crear imágenes desde cero utilizando Packer descargando una ISO de Internet.
Objetivo: para crear imágenes de Docker descargando una ISO con Packer
Intento
Intento 1
Es posible importar una imagen de Docker
[username@hostname]$ cat docker.json { "builders":[{ "type": "docker", "image": "ubuntu", "export_path": "image.tar" }]}
uso de 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
Intento 2
Cambio del tipo de constructor de un empaquetador.json que se utiliza para crear una imagen de virtualbox docker
resultados en:
[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
Sin embargo, si es necesario crear una imagen de docker, se pueden descargar varias imágenes base, pero ¿también es posible descargar una ISO y transformarla en una imagen de docker?