docker-compose:
mysql:
image: mysql:5.7.16
container_name: f_mysql
volumes:
- ./db:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: sheep
expose:
- '3306'
and I use docker exec
input this container,
and I type echo $MYSQL_ROOT_PASSWORD
, then I got sheep
,
but the mysql root password still is '',
when I type 'mysql -uroot', I login mysql.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…