Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change the vault image publisher to hashicorp #139

Merged
merged 1 commit into from
Sep 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/docker-compose-tls.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.8"
services:
vault:
image: vault:latest
image: hashicorp/vault:latest
container_name: vault
restart: on-failure:10
ports:
Expand Down
2 changes: 1 addition & 1 deletion scripts/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.8"
services:
vault:
image: vault:latest
image: hashicorp/vault:latest
container_name: vault
restart: on-failure:10
ports:
Expand Down
4 changes: 2 additions & 2 deletions scripts/start-vault.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ docker run --network=container:vault --cap-add IPC_LOCK -e VAULT_ADDR=https://$V
echo "
To run vault commands, use the following docker command:
- For connecting to Vault on the same Docker host:
docker run --network=container:vault --cap-add IPC_LOCK -e VAULT_ADDR=https://$VAULT_IP:8201 -e VAULT_SKIP_VERIFY=true --rm vault:latest vault status
docker run --network=container:vault --cap-add IPC_LOCK -e VAULT_ADDR=https://$VAULT_IP:8201 -e VAULT_SKIP_VERIFY=true --rm hashicorp/vault:latest vault status
- For connecting to Vault from another host :
docker run --network=container:vault --cap-add IPC_LOCK -e VAULT_ADDR=https://$HOST_IP:8201 -e VAULT_SKIP_VERIFY=true --rm vault:latest vault status
docker run --network=container:vault --cap-add IPC_LOCK -e VAULT_ADDR=https://$HOST_IP:8201 -e VAULT_SKIP_VERIFY=true --rm hashicorp/vault:latest vault status
"

# Generate .env file
Expand Down
Loading