This commit is contained in:
Vassiliy Yegorov
2022-07-28 01:01:40 +07:00
parent b38288eba7
commit 2edf95fe70
3 changed files with 15 additions and 12 deletions

View File

@@ -1,9 +1,16 @@
#!bin/bash
[[ ! -f .env ]] && {
echo "Please create .env file and put domain"
exit 1
}
source .env
docker compose up -d
while [[ ! $(docker inspect -f {{.State.Health.Status}} vault) == "healthy" ]]; do
sleep 0.5;
done
docker exec vault /bin/sh -c "source /helpers/init.sh"
docker exec vault /bin/sh -c "export VAULT_HOST=${VAULT_HOST} && source /helpers/init.sh"