This repository has been archived on 2026-09-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
mrcharles 13daaf398e feat: vaultwarden-test 1.37.2 + vault-test 2.0.4 compose (loopback) [#769]
Workstation test lane. Vault dev-mode = in-memory, well-known dev
root token by design (not a credential). PKI experiments for #697
start here.

https://projects.knownelement.com/issues/769#note-4152
2026-09-04 06:19:44 -05:00

17 lines
573 B
YAML

# vault-test — HashiCorp Vault DEV server (in-memory; wipes on restart).
# TEST ONLY. Loopback bind. Root token is the well-known dev default
# ("root") — this is not a credential, by design. PKI experiments for
# #697 (SSH certs, k8s CA) happen against THIS instance first.
services:
vault:
image: hashicorp/vault:2.0.4
container_name: ukrrs-pfv-vault-test
ports:
- "127.0.0.1:8201:8200"
environment:
VAULT_DEV_ROOT_TOKEN_ID: "root"
VAULT_DEV_LISTEN_ADDRESS: "0.0.0.0:8200"
cap_add:
- IPC_LOCK
restart: unless-stopped