Skip to content

Commit

Permalink
chore: reverted compose cmd to legacy one
Browse files Browse the repository at this point in the history
  • Loading branch information
psanders committed Jul 24, 2022
1 parent a014509 commit 1b283c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion operator/compose/basic-network.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function basic_network() {
fi
done

COMPOSE_CMD="docker compose --env-file .env ${COMPOSE_FILES[*]}"
COMPOSE_CMD="docker-compose --env-file .env ${COMPOSE_FILES[*]}"

case $1 in
start)
Expand Down
10 changes: 5 additions & 5 deletions operator/compose/vault-unseal.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/bin/bash

# Replace with your own keys, but keep in mind that this is a bad idea
# for production environments
KEY1=tuSoeBR3xkKwb2VtOFCKadA3TOu5GSiu2/jUvBxBbfvd
KEY2=vc3w+pwKz3hRDxkXQZieZLnDA16dX+bxwGyE2Uu2e0ha
KEY3=ARwmV6h/m4nyCdXdOvlNR8yzlb4M2u/lVZKHIEQ7H8vI
# Enter Vault keys in the environment variables bellow,
# and keep in mind that this is a bad idea for production environments
KEY1=
KEY2=
KEY3=
KEYS=(${KEY1} ${KEY2} ${KEY3})

# Find the container name for vault instance
Expand Down

0 comments on commit 1b283c6

Please sign in to comment.