Sign inSign up

chiefy/alpine-vault

By chiefy

Updated over 8 years ago

This is a Docker image with Alpine Linux running the latest version of Vault by HashiCorp.

Image
3

5.8K

chiefy/alpine-vault repository overview

alpine-vault

This is a Docker image with Alpine Linux running the latest version of Vault by HashiCorp.

Usage

#!/bin/bash

# Absolute path to your vault config file
MY_VAULT_CONFIG=/path/to/vault.hcl

# If you're using boot2docker, you'll need to change this to the IP of your boot2docker host
DOCKER_HOST=127.0.0.1

# Export this so you can access the vault server via CLI locally
export VAULT_ADDR=http://$DOCKER_HOST:8200

docker run \
	--rm \
	--name vault-dev \
	--memory-swap -1 \
	-v "$MY_VAULT_CONFIG:/etc/vault.hcl" \
	-p 8200:8200 \
	chiefy/alpine-vault:0.3.1

Tag summary

Content type

Image

Digest

sha256:c7f920a03

Size

19.6 MB

Last updated

over 8 years ago

docker pull chiefy/alpine-vault