Skip to content

Commit

Permalink
wrong container name location
Browse files Browse the repository at this point in the history
  • Loading branch information
austingebauer committed Jul 12, 2023
1 parent ebf1c0c commit f4ba403
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
if: matrix.os == 'linux' && matrix.arch == 'amd64'
run: |
docker pull hashicorp/vault:latest &&
docker run -d --name hashicorp/vault --mount type=bind,src=${PWD}/bin,dst=/vault/file --cap-add=IPC_LOCK -e VAULT_ADDR='http://127.0.0.1:8200' -e 'VAULT_TOKEN=myroot' -e 'VAULT_DEV_ROOT_TOKEN_ID=myroot' -e 'VAULT_DEV_LISTEN_ADDRESS=127.0.0.1:8200' vault server -dev -dev-plugin-dir /vault/file &&
docker run -d --name vault --mount type=bind,src=${PWD}/bin,dst=/vault/file --cap-add=IPC_LOCK -e VAULT_ADDR='http://127.0.0.1:8200' -e 'VAULT_TOKEN=myroot' -e 'VAULT_DEV_ROOT_TOKEN_ID=myroot' -e 'VAULT_DEV_LISTEN_ADDRESS=127.0.0.1:8200' hashicorp/vault server -dev -dev-plugin-dir /vault/file &&
timeout 30 sh -c 'until docker exec -t vault vault status; do sleep 1; done' &&
docker exec -t vault vault auth enable vault-plugin-auth-azure
Expand Down

0 comments on commit f4ba403

Please sign in to comment.