changed typo in command for connecting and checking mysql database

changed typo 
docker exec -ti <mysql-container-id> mysql -p todos
to
docker exec -it <mysql-container-id> mysql -p todos
This commit is contained in:
Dennis
2020-06-23 10:57:34 +02:00
committed by GitHub
parent 35dc319a76
commit 017f59dc49

View File

@@ -199,7 +199,7 @@ With all of that explained, let's start our dev-ready container!
is **secret**.
```bash
docker exec -ti <mysql-container-id> mysql -p todos
docker exec -it <mysql-container-id> mysql -p todos
```
And in the mysql shell, run the following: