docker-vault/docker-compose.yaml
2021-03-11 12:10:52 +01:00

21 lines
383 B
YAML

version: '3'
services:
vault:
build:
args:
VAULT_REPO: ${VAULT_REPO}
VAULT_VERSION: ${VAULT_VERSION}
context: ./
container_name: vault
image: vault:local
logging:
driver: journald
options:
tag: vault
restart: never # TODO
ports:
- ${API_IP}:${API_PORT}:8200
- ${CLUSTER_IP}:${CLUSTER_PORT}:8201