0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

MacでIntelliJ IDEAのDocker Pluginを使う設定手順

Last updated at Posted at 2021-07-09

概要

IntelliJ IDEAのDocker pluginでDockerを動かす設定手順

Version

Screen Shot 2021-07-09 at 21.19.33.png

Docker Pluginのインストール

Preferences(環境設定) -> Plugins -> Dockerの「Install」をクリック
Screen Shot 2021-07-09 at 17.55.47.png

「Restart IDE」をクリック
Screen Shot 2021-07-09 at 17.56.12.png

Restart
Screen Shot 2021-07-09 at 17.56.31.png

Preferences(環境設定) -> Build, Execution, Deployment -> Docker を開いて、Docker for Macを選択し、下部に「Connection successful」が表示されていればOK。
Screen Shot 2021-07-09 at 18.02.28.png

Preferences(環境設定) -> Build, Execution, Deployment -> Docker -> Toolsを開いて、docker, docker-composeなどのパスを確認。
Screen Shot 2021-07-09 at 20.40.54.png

これでPluginのインストール、設定は完了。

Docker imageをpullしてコンテナを起動する

Serviceウィンドウを開く

画面下部のServicesウインドウを開く -> Docker -> 左上の再生ボタンをクリック
Screen Shot 2021-07-09 at 19.24.46.png

Dockerへの接続が成功すると、Docker Imageの一覧が表示される。
Screen Shot 2021-07-09 at 22.14.54.png

Docker imageをpull

Imagesの上で右クリックして、Pull imageをクリック。
Screen Shot 2021-07-09 at 19.58.23.png

PullするImageの名前を入力してCommand + Enterを押すとダウンロードが始まる。
Screen Shot 2021-07-09 at 20.38.19.png

macのTerminalでもImageが確認できる。

$ docker images | grep gradle
gradle                  latest    2de9280b4ffa   6 days ago     640MB

コンテナを起動

起動したいコンテナ名の上で右クリックして、Create container。
Screen Shot 2021-07-09 at 20.43.44.png

必要な情報を入力してRunをクリック。portやEntrypointなどのオプションは、右側のModify optinosをクリックして設定する。
Screen Shot 2021-07-09 at 20.51.08.png

Entrypointを以下のように設定してみる。
Screen Shot 2021-07-09 at 21.15.56.png

Runをクリックして、以下のように出力されれば成功。
Screen Shot 2021-07-09 at 21.17.57.png

関連

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?