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

fix(BUX-235): fixing sqlite option in starting script #317

Merged
merged 1 commit into from
Oct 5, 2023
Merged
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
9 changes: 5 additions & 4 deletions start-bux-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,11 @@ fi

echo -e "\033[0;32mStarting additional services with docker-compose...$reset"
if [ "$cache" == "redis" ]; then
echo -e "\033[0;37mdocker compose up -d bux-redis bux-'$database'$reset"
docker compose up -d bux-redis bux-"$database"
else
echo -e "\033[0;37mdocker compose up -d bux-redis$reset"
docker compose up -d bux-redis
fi

if [ "$database" != "sqlite" ]; then
echo -e "\033[0;37mdocker compose up -d bux-'$database'$reset"
docker compose up -d bux-"$database"
fi
Expand Down Expand Up @@ -254,7 +256,6 @@ if [ "$bux_server" == "true" ]; then

trap cleanup EXIT
fi

else
echo -e "\033[0;33m\033[1mThanks for using Bux configurator!"
echo -e "Additional services are working, remember to start Bux-server manually!$reset"
Expand Down
Loading