You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
301 B
17 lines
301 B
version: '3'
|
|
|
|
services:
|
|
vault:
|
|
image: vault:1.13.3
|
|
cap_add:
|
|
- IPC_LOCK
|
|
ports:
|
|
- "8200:8200"
|
|
environment:
|
|
VAULT_DEV_ROOT_TOKEN_ID: "dev"
|
|
etcd:
|
|
image: bitnami/etcd:3.5.11
|
|
environment:
|
|
ALLOW_NONE_AUTHENTICATION: "yes"
|
|
ports:
|
|
- "2379:2379"
|
|
|