Open
Description
Thanks for the containers, using them makes live easier.
I came arount this issue:
running the dockware images with docker compose and executing
#: make pull
fails because the host mysql is unknown and there is no user app in mysql
the missing host mysql can be fixed adding the following lines to docker-compose.yaml
services:
shopware:
...
networks:
web:
aliases:
- mysql
(this adds the host mysql to 127.0.0.1)
after adding the mysql user app make pull works fine.
maybe this can be added to the docs.
best,
Roman