1
3

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 Community Edition for Mac(docker for mac)のセットアップ

Posted at

記事概要

Mac OS Xにdockerをインストールして動作確認するところまでを執筆しています。
おまけでhello worldも

記事の対象読者

  • dockerをこれからインストールする方
  • お使いのPCがMacの方

平均読了時間

解説を飛ばすと10分かからずにセットアップが完了します。
記事中の解説/詳細を見ると15分程度になるかと思います。

作業開始

1. システム要件の確認

インストール先の環境が以下の要件を満たしているか確認してください。

要件を満たしていることが確認できたら次の作業に進んでください。

2. dockerのディスクイメージをダウンロード

dcoker storeからdocker.dmgをダウンロードします。

※ dockerstoreのアカウントが必要になりますので、お持ちでない人は登録をしてください。

作業イメージ
スクリーンショット 2018-11-29 9.07.13.png
画像右にある[Please Login To Download]をからログインフォームに飛べます。
ログインすると元の画面に帰ってきて、
[Please Login To Download]が[get docker]に変わっています。

3. アプリケーションの展開と配置

先ほどダウンロードしたdocker.dmgをクリックするとアプリケーションが展開されますので、
ウィザード(展開時に出てくる画面)の指示にしたがってアプリケーションディレクトリに配置します。

スクリーンショット 2018-11-29 8.55.13.png

dockerのくじらさんかわいいですよね。
背中にコンテナを積んでるところもまたいとおかし。

4. dcoker 起動

Applicationディレクトリに移動したdocker.appをダブルクリックで起動します。
起動後、コンソールを開いて正常にインストールができているか確認しましょう。

$ docker version
Client: Docker Engine - Community
 Version:           18.09.0
 API version:       1.39
 Go version:        go1.10.4
 Git commit:        4d60db4
 Built:             Wed Nov  7 00:47:43 2018
 OS/Arch:           darwin/amd64
 Experimental:      false

Server: Docker Engine - Community
 Engine:
  Version:          18.09.0
  API version:      1.39 (minimum version 1.12)
  Go version:       go1.10.4
  Git commit:       4d60db4
  Built:            Wed Nov  7 00:55:00 2018
  OS/Arch:          linux/amd64
  Experimental:     false

$ docker-compose --version
docker-compose version 1.23.2, build 1110ad01

$ docker-machine --version
docker-machine version 0.16.0, build 702c267f

上記のコマンドを実行して正常なレスポンスが帰って来れば、
無事にインストールが完了しています。
あとはご自由にお使いください!!

おまけ (hello-worldする)

$ docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
9db2ca6ccae0: Pull complete
Digest: sha256:4b8ff392a12ed9ea17784bd3c9a8b1fa3299cac44aca35a85c90c5e3c7afacdc
Status: Downloaded newer image for hello-world:latest

Hello from Docker!
This message shows that your installation appears to be working correctly.

To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
    (amd64)
 3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.

To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash

Share images, automate workflows, and more with a free Docker ID:
 https://hub.docker.com/

For more examples and ideas, visit:
 https://docs.docker.com/engine/userguide/
1
3
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
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?