13 lines
296 B
YAML
13 lines
296 B
YAML
version: "3.8"
|
|
services:
|
|
vault-server:
|
|
image: hashicorp/vault
|
|
ports:
|
|
- 8200
|
|
environment:
|
|
VAULT_ADDR: "http://0.0.0.0:8200"
|
|
VAULT_DEV_ROOT_TOKEN_ID: "vault-plaintext-root-token"
|
|
cap_add:
|
|
- IPC_LOCK
|
|
labels:
|
|
kompose.service.expose: vault.wayl.one
|