Did these changes to get Shopware to run locally on my Mac. The only other fix I had to do was enter the MySQL Docker to drop the hardcoded IP. I suspect this was done on the initial setup, but didn't bother to check.
Steps to fix that:
docker exec -it shopware-docker_app_mysql_1 bash
# mysql -u app -p
mysql > use shopware
mysql > `UPDATE `s_core_shops` SET `host`=NULL;
Did these changes to get Shopware to run locally on my Mac. The only other fix I had to do was enter the MySQL Docker to drop the hardcoded IP. I suspect this was done on the initial setup, but didn't bother to check. Steps to fix that:
docker exec -it shopware-docker_app_mysql_1 bash
Should fix Issue #2