Popufare Docker Notes === ### 2020-06-14 I was having trouble with the docker MySQL connection for the Web API. [This link](https://forums.docker.com/t/solved-unclear-behaviour-of-a-mysql-container-running-with-docker-for-mac-1-12-0-a/20331) solved it for me, which has now been put into the `Dockerfile`. The following line was added: ``` create user busapi; grant all privileges on busdb.* to "busapi"@"%"; alter user "busapi"@"%" identified by "bus"; flush privileges; ``` ---