Skip to content

Commit

Permalink
Fixed bad name variable, issue #30
Browse files Browse the repository at this point in the history
  • Loading branch information
ezimuel committed Jan 20, 2025
1 parent 76c024c commit 885556f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion start-local.sh
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ create_api_key() {
# parameter: the name of the container
check_container_running() {
container_name=$1
containers=$(docker ps --format '{{.Names}}')
containers="$(docker ps --format '{{.Names}}')"
if echo "$containers" | grep -q "^${container_name}$"; then
echo "The docker container '$container_name' is already running!"
echo "You can have only one running at time."
Expand Down

0 comments on commit 885556f

Please sign in to comment.