shopwareArchive / shopware-docker

A docker setup ready for shopware development
74 stars 37 forks source link

Removes unneeded networking information for Docker #30

Closed terwey closed 5 years ago

terwey commented 5 years ago

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;

Should fix Issue #2

teiling88 commented 5 years ago

I fixed your problem with the hardcoded ip and updated the README.md file in your pr branch.

Thanks for your contribution @terwey.