Horje
docker how to run command in mysql Code Example
docker how to run command in mysql
# If you run the container with a command like the following:
# sudo docker run --name some-mysql -e MYSQL_ROOT_PASSWORD=my-secret-pw -d mysql:tag

sudo docker exec -t -i some-mysql /bin/bash
mysql -uroot -pmy-secret-pw

# An example below:
sudo docker run --name mysqldb -e MYSQL_ROOT_PASSWORD=MySecretPass -d mysql:latest
sudo docker start mysqldb
sudo docker exec -t -i mysqldb /bin/bash
mysql -uroot -pMySecretPass




Shell

Related
sudo: yum: command not found Code Example sudo: yum: command not found Code Example
portainer install ubuntu Code Example portainer install ubuntu Code Example
install ffmpeg ubuntu Code Example install ffmpeg ubuntu Code Example
how to install firefos on an rpi Code Example how to install firefos on an rpi Code Example
portaine ce Code Example portaine ce Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9