`docker exec -it {CONTAINER ID} /bin/bash` execs into the container. This can be helpful for exploring the mysql db. After you exec into the mysql container, run `mysql -u root -p` in the container. Input the password you set to MYSQL_ROOT_PASSWORD. Now
`docker exec -it {CONTAINER ID} /bin/bash` execs into the container. This can be helpful for exploring the mysql db. After you exec into the mysql container, run `mysql -u root -p` in the container. Input the password you set to MYSQL_ROOT_PASSWORD. Now
you can use SQL to explore the db.
you can use SQL to explore the db.
## Running the CLI locally
## Helpful Tips
Exec into the `localdev-web-1` container using
Sometimes the mysql container exits immediately with code 139 due to insufficient memory. Restarting colima resolves this issue.