2014年11月18日火曜日

dockerでCentOSを使ってみる

Dockerの公開コンテナを見てみるとCentOSがあるようだ。
https://registry.hub.docker.com

最新のCentOSイメージをダウンロードする

$ sudo docker pull centos:latest
Pulling repository centos
ae0c2d0bdc10: Download complete
511136ea3c5a: Download complete
5b12ef8fd570: Download complete

イメージを確認してみる

$ sudo docker images
REPOSITORY          TAG                 IMAGE ID            CREATED             VIRTUAL SIZE
centos              latest              ae0c2d0bdc10        13 days ago         224 MB
無事にダウンロードできたようだ

早速コンテナを作成しログインしてみる

$ sudo docker run -it --name mycentos centos:latest /bin/bash
[root@0e53837cbff4 /]# cat /etc/redhat-release
CentOS Linux release 7.0.1406 (Core)

0 件のコメント:

コメントを投稿