Mysql: docker run not working

Created on 7 Nov 2017  路  1Comment  路  Source: docker-library/mysql

docker run --name mysql-local -e MYSQL_ROOT_PASSWORD=some-pass -d mysql/mysql-server:tag
Unable to find image 'mysql/mysql-server:tag' locally
docker: Error response from daemon: manifest for mysql/mysql-server:tag not found.
See 'docker run --help'

Most helpful comment

:tag is a placeholder -- you've got to pick a specific version (such as :5.7) to run.

Additionally, this repository is for the mysql image, not mysql/mysql-server (which is in https://github.com/mysql/mysql-docker). :+1:

>All comments

:tag is a placeholder -- you've got to pick a specific version (such as :5.7) to run.

Additionally, this repository is for the mysql image, not mysql/mysql-server (which is in https://github.com/mysql/mysql-docker). :+1:

Was this page helpful?
0 / 5 - 0 ratings