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.
18 lines
294 B
18 lines
294 B
4 years ago
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
vault:
|
||
|
image: vault:latest
|
||
|
cap_add:
|
||
|
- IPC_LOCK
|
||
|
ports:
|
||
|
- "8200:8200"
|
||
|
environment:
|
||
|
VAULT_DEV_ROOT_TOKEN_ID: "dev"
|
||
|
etcd:
|
||
|
image: bitnami/etcd
|
||
|
environment:
|
||
|
ALLOW_NONE_AUTHENTICATION: "yes"
|
||
|
ports:
|
||
|
- "2379:2379"
|