I have a problem with docker-compose and mysql:
docker-compose.yml
version: \'2\' services: db: image: mysql volumes: - \"./sito/db/:
It looks like you're setting the MYSQL_ROOT_PASSWORD to nothing. Per the documentation, it is required.
MYSQL_ROOT_PASSWORD
https://hub.docker.com/_/mysql/
MYSQL_ROOT_PASSWORD This variable is mandatory and specifies the password that will be set for the MySQL root superuser account.
This variable is mandatory and specifies the password that will be set for the MySQL root superuser account.