mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-06 23:06:54 +00:00
* Revert "fix secrets stored in json format (#466)"
This reverts commit b9f4d16071.
* fix build: use new Verified Publisher image hashicorp/vault
33 lines
820 B
YAML
33 lines
820 B
YAML
# Start vault server locally for the purposes of integration tests.
|
|
version: "3.0"
|
|
services:
|
|
vault:
|
|
image: hashicorp/vault:latest
|
|
environment:
|
|
VAULT_DEV_ROOT_TOKEN_ID: testtoken
|
|
ports:
|
|
- 8200:8200
|
|
privileged: true
|
|
vault-enterprise:
|
|
image: hashicorp/vault-enterprise:latest
|
|
environment:
|
|
VAULT_DEV_ROOT_TOKEN_ID: testtoken
|
|
VAULT_LICENSE: ${VAULT_LICENSE_CI}
|
|
ports:
|
|
- 8200:8200
|
|
privileged: true
|
|
vault-tls:
|
|
image: hashicorp/vault:latest
|
|
hostname: vault-tls
|
|
environment:
|
|
VAULT_CAPATH: /etc/vault/ca.crt
|
|
ports:
|
|
- 8200:8200
|
|
privileged: true
|
|
volumes:
|
|
- ${PWD}/integrationTests/e2e-tls/configs:/etc/vault
|
|
- vault-data:/var/lib/vault:rw
|
|
entrypoint: vault server -config=/etc/vault/config.hcl
|
|
|
|
volumes:
|
|
vault-data:
|