HashiCorp Vault

A Tool for Managing Secrets

UI

  • vault-ui - Vault-UI — A beautiful UI to manage your Vault, written in React

Tools

  • unseal - A command line tool to unseal multiple Hashicorp Vault servers quickly
  • vault-unsealer - Vault Unseal automation

docker-compose

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
version: '2'

services:
vault:
cap_add:
- IPC_LOCK
image: sjourdan/vault:0.7.0
network_mode: host
dns: 172.17.0.1
restart: always
volumes:
- "$PWD/server.hcl:/config/server.hcl"
ports:
- "8200:8200"
entrypoint:
- /bin/vault
- server
- -config=/config/server.hcl

Comments

⬆︎TOP