5
7

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 5 years have passed since last update.

DockerのGUIツール

Last updated at Posted at 2019-04-19

Dockerの操作はコマンドで行う場合が多いですが、
Docker for Windowsの場合は、Kitematicと合わせて利用すると直感的になります。

またWebベースのPortainerも使いやすいです。

Kitematic

ダウンロード: https://kitematic.com/

解凍した後、Kitematic.exeをダブルクリックし、Dockerが自動検知されます。
Dockerがない場合はインストールする必要があります。

Docker Hubからコンテナ作成できます。
image.png

Gitlab-ceの起動画面:
image.png

設定画面:
image.png

ポート:
image.png

Volumes:
image.png

Portainer

Hyper-v,Virtual-boxなどのDockerを管理したい場合は、WebベースのPortainerは便利です。
Portainer: https://github.com/portainer/portainer

インストールは簡単です。

docker volume create portainer_data

docker run -d -p 9000:9000 --name portainer --restart always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer

起動後は、IPから DockerサーバIP:9000/#/dashboard でアクセス。

Application templatesからコンテナ作成できます。
Application templates:
image.png

ダッシュボード:
image.png

コンテナ一覧:
image.png

起動、削除、追加、ログ確認など、いろいろできます。

コンテナ詳細:
image.png

以上

5
7
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
5
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?