3
2

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.

MacにDockerを入れる。

Posted at

##はじめに
MacにDockerを入れます。
ちなみに、私がMacにDockerを入れたい理由は、Macbookで、興味のあるSQL Serverを動かしたいためです。
(SQL Serverは、MicrosoftのDBなので、Macでは動かないのです。
&私のMacBook AirはHDDのサイズが128GBなので、Boot Campが難しいのです)
私の動作環境は以下。
スクリーンショット 2018-12-20 20.01.20.png

##入れ方
以下サイトからインストール。
https://docs.docker.com/docker-for-mac/install/
(アカウントを登録する必要があります)
スクリーンショット 2018-12-20 18.55.35.png
スクリーンショット 2018-12-20 18.56.24.png
アイコンをフォルダにドラッグ&ドロップ。
スクリーンショット 2018-12-20 19.13.56.png
LaunchpadにDockerのアイコンが出るので、クリック。
スクリーンショット 2018-12-20 20.21.35.png
メニューバーに以下のように出たら動いています。
スクリーンショット 2018-12-20 20.22.30.png

##ちょっとだけ動作確認してみよう!

  • 現在起動しているコンテナを確認する。

docker container ls

以下だと何も起動していない状態。

$ docker container ls
CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS              PORTS               NAMES
  • hello-worldコンテナを起動させてみる。

docker run hello-world

$ docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
d1725b59e92d: Pull complete 
Digest: sha256:0add3ace90ecb4adbf7777e9aacf18357296e799f81cabc9fde470971e499788
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/get-started/

以上です。おつかれさまでした☺️

オマケ:Dockerの自動起動の切りかた

Dockerは、デフォルトだとMacのアカウントにログインするたびに
自動で起動します。
以下の手順で自動起動を解除できます。
スクリーンショット 2018-12-20 22.10.07.png
スクリーンショット 2018-12-20 22.10.38.png

参考にさせていただいたサイト等

DockerをMacにインストールする (更新:2018/5/14)
Docker入門(第一回)~Dockerとは何か、何が良いのか~
#マンガでわかるDocker ① 〜概念・基本コマンド編〜 【ダウンロード版】 #技術書典 4

3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?