labsync/packer.json
2018-02-12 12:49:11 +00:00

23 lines
346 B
JSON

{
"variables": {
},
"builders":
[
{
"type": "docker",
"image": "debian:stretch",
"export_path": "rootfs.tar"
}
],
"provisioners": [
{
"type": "shell",
"script": "./setup.sh"
},
{
"type": "ansible",
"playbook_file": "ansible/playbook.yml",
"user": "root"
}
]
}