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.

MacOSでDockerを動かしてみた

Last updated at Posted at 2018-05-05

#Docker登録
docker
スクリーンショット 2018-05-05 9.54.26.png

Create Docker IDから登録します

#Dockerダウンロード
docker community edition
スクリーンショット 2018-05-05 10.01.31.png

Docker CE for Macをダウンロードします。

#Dockerインストール
ダウンロードしたdmgファイルをダブルクリックし、インストール

#CentOSをPull
ターミナルから$ docker pull centos

#CentOS起動
$ docker run -itd centos /bin/bash

#コンテナIDを確認
$ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
877xxxxxxxx centos "/bin/bash" About an hour ago Up About an hour vibrant_shirley

#コンテナへアタッチ
$ docker attach 877xxxxxxxx

#コンテナからログアウト
Linuxからログアウトするようにexitコマンドを打つと、コンテナが停止してしまいます。コンテナを停止せずにログアウトするのはControl+p→Control+qです。

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?