Skip to content

Commit

Permalink
Merge pull request #8 from naphelps/issue-1
Browse files Browse the repository at this point in the history
Issue 1: Fixed Typos
  • Loading branch information
naphelps authored Apr 15, 2024
2 parents 5e805cd + f76cd1e commit eb0ea4b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker/config/config.hcl
Original file line number Diff line number Diff line change
@@ -1 +1 @@
plugin_directory = "/openbao/plugins"
plugin_directory = "/vault/plugins"
6 changes: 3 additions & 3 deletions docker/scripts/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ if [ -n "$BAO_CLUSTER_INTERFACE" ]; then
echo "Using $BAO_CLUSTER_INTERFACE for BAO_CLUSTER_ADDR: $BAO_CLUSTER_ADDR"
fi

# BAO_CONFIG_DIR isn't exposed as a volume but you can compose additional
# VAULT_CONFIG_DIR isn't exposed as a volume but you can compose additional
# config files in there if you use this image as a base, or use
# VAULT_LOCAL_CONFIG below.
VAULT_CONFIG_DIR=/vault/config

# You can also set the VAULT_LOCAL_CONFIG environment variable to pass some
# Bao configuration JSON without having to bind any volumes.
if [ -n "$VAULT_CONFIG_DIR" ]; then
echo "$VAULT_CONFIG_DIR" > "$VAULT_CONFIG_DIR/local.json"
if [ -n "$VAULT_LOCAL_CONFIG" ]; then
echo "$VAULT_LOCAL_CONFIG" > "$VAULT_CONFIG_DIR/local.json"
fi

# If the user is trying to run Bao directly with some arguments, then
Expand Down

0 comments on commit eb0ea4b

Please sign in to comment.