Docker image for Hashicorp's Vault app in Alpine linux
499
Docker image for Hashicorp's Vault app in Alpine linux.
This is a simple docker image that contains Hashicorp's Vault app build in Alpine linux. All the work happens in the bootstrap.sh file. It will do the following:
Building is pretty easy, just run make and it will build! For more details read on!
To build manually just run a build command like the following:
$ docker build -t chosenken/alpine-vault .
An example docker run command:
$ docker run -d --name vault
--cap-add IPC_LOCK \
-v $(pwd)/vault.hcl:/vault.hcl\
-p 8200:8200 -p 8500:8500 \
-e VAULT_ADDR=http://127.0.0.1:8200 \
chosenken/alpine-vault server -config /vault.hcl
Content type
Image
Digest
sha256:d796479a6…
Size
3.6 MB
Last updated
over 7 years ago
docker pull chosenken/alpine-vault