Just getting started here. I have tried several Docker images (php:7.1, composer) and specified a MySQL service:
services:
- mysql:5.7
However the “mysql” command is not installed in /usr/bin. I get:
mysql: command not found
Neither is apt-get installed, so installing doesn’t seem an easy option.
How do I execute any queries - e.g. create a database - on the MySQL service ? Do I need to connect to the mysql container and issue commands there somehow?