Skip to content

Commit

Permalink
fix: fixed typo in start-database script templates (t3-oss#1790)
Browse files Browse the repository at this point in the history
  • Loading branch information
heyitsdoodler committed Mar 7, 2024
1 parent de9e46b commit a64ed74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/template/extras/start-database/mysql.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ fi

docker run --name $DB_CONTAINER_NAME -e MYSQL_ROOT_PASSWORD=$DB_PASSWORD -e MYSQL_DATABASE=project1 -d -p 3306:3306 docker.io/mysql

echo "Database container was succesfuly created"
echo "Database container was successfully created"


2 changes: 1 addition & 1 deletion cli/template/extras/start-database/postgres.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ fi

docker run --name $DB_CONTAINER_NAME -e POSTGRES_PASSWORD=$DB_PASSWORD -e POSTGRES_DB=project1 -d -p 5432:5432 docker.io/postgres

echo "Database container was succesfuly created"
echo "Database container was successfully created"

0 comments on commit a64ed74

Please sign in to comment.