laravel sail でadminerを使う
1578 ワード
結論
https://qiita.com/59e592291982460/items/a2e8e738c8ff7230b894
注意点:はじめて、sail upする前に.envのDB_PASSWORDを設定しておく。
adminerは、パスワードが設定されていないとログインできない
①docker-compose.yml
のservices
に以下を追加する。
adminer:
container_name: adminer
hostname: adminer
image: adminer
restart: always
ports:
- 8080:8080
depends_on:
- mysql
networks:
- sail
②sail up
をする。
③http://localhost:8080/
にアクセス。
④ログイン画面
は以下のように設定
-
サーバ
はmysql(servicesのmysqlのサービス名) -
ユーザ名
はroot -
パスワード
は自分で設定したもの
Author And Source
この問題について(laravel sail でadminerを使う), 我々は、より多くの情報をここで見つけました https://qiita.com/59e592291982460/items/bbec3327bfda239975e8著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .