MariaDBコンテナを立ち上げるには?

ショコラ
ショコラ

MariaDBコンテナを立ち上げるには?

「docker run -–rm -p 3306:3306 -e MYSQL_ROOT_PASSWORD={パスワード} mariadb:{バージョン}」でキメマス。
因みに MariaDB のポートは 3306 です。
MariaDB は MySQL なんですよね。

もっさん先輩
もっさん先輩
docker run --rm -p 3306:3306 -e MYSQL_ROOT_PASSWORD={パスワード} mariadb:{バージョン}

手順

  1. MariaDBコンテナ を立ち上げます。
docker run --name mariadb --rm -p 3306:3306 -e MYSQL_ROOT_PASSWORD=123456 mariadb
  1. MariaDBコンテナにログインします。
docker exec -it mariadb mysql -p123456

メモ。上と下は同じです。

docker exec -it mariadb mysql -p123456 -u root -h localhost -P 3306 mysql

↓MariaDB にログインできました。

$ docker exec -it mariadb mysql -p123456
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 4
Server version: 10.7.3-MariaDB-1:10.7.3+maria~focal mariadb.org binary distribution

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]>
Scroll to Top