Created
March 28, 2016 23:34
-
-
Save cbednarski/9a7d18a67fb336edc9d4 to your computer and use it in GitHub Desktop.
Docker.app Packer Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"builders": [ | |
{ | |
"type": "docker", | |
"image": "ubuntu", | |
"discard": true | |
} | |
], | |
"provisioners": [ | |
{ | |
"type": "file", | |
"source": "cake.txt", | |
"destination": "/chocolate-cake", | |
"direction": "upload" | |
}, | |
{ | |
"type": "shell", | |
"inline": [ | |
"tar -czf /cake.tar.gz /chocolate-cake" | |
] | |
}, | |
{ | |
"type": "file", | |
"source": "/cake.tar.gz", | |
"destination": "cake.tar.gz", | |
"direction": "download" | |
} | |
], | |
"post-processors": [ | |
{ | |
"type":"artifice", | |
"files":"cake.tar.gz" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment