Snowcapper is a single binary for bootstrapping services onto an Alpine Linux image.
extends:
- src: /tmp/examples/vim.snc
packages:
- name: vault
binaries:
- name: vault
mode: 0755
src: https://releases.hashicorp.com/vault/0.10.0/vault_0.10.0_linux_amd64.zip
src_hash: a6b4b6db132f3bbe6fbb77f76228ffa45bd55a5a1ab83ff043c2c665c3f5a744
format: zip
files:
- path: /etc/vault/config.hcl
mode: 0700
content: |
storage "file" {
path = "/mnt/vault/data"
}
listener "tcp" {
address = "0.0.0.0:8200"
tls_disable = 1
}
services:
- binary: vault
args:
- "server"
- "-config /etc/vault/config.hcl"
inits:
- type: openrc
content: vault
make get
make binary
./snowcapper
make
This builds the binary and provisions an Alpine VM using snowcapper and Vagrant.