turboLinux_White Box Enterprise Linux_Fedora Core_Red Hat Memo/photon(dockr)
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
開始行:
* photon(docker) [#f6fe67a4]
RIGHT:更新日&lastmod();
VMWareのphotonをインストールしてみた。dockerのバージョン...
***Docker イメージの表示 [#fab41bc6]
イメージは実際にコンテからデプロイされ起動することができ...
# docker images
REPOSITORY TAG IMAGE ID ...
vmwarecna/nginx latest 6d36a12c92d5 ...
***インターネットからコンテナを検索 [#o1d59664]
コンテナはテンプレートみたいなもの?ここからデプロイして...
ネット上にあるコンテナの検索
bash-4.3# docker search centos
NAME DESCRIPTION ...
centos The official build...
ansible/centos7-ansible Ansible on Centos7...
tutum/centos Centos image with ...
blalor/centos Bare-bones base Ce...
***インターネットからコンテナをインストール [#j290b6f7]
docker pull [コンテナ名]:[タグ]
bash-4.3# docker pull centos
Pulling repository centos
fd44297e2ddb: Download complete
6941bfcbbfca: Download complete
41459f052977: Download complete
Status: Downloaded newer image for centos:latest
タグを指定
bash-4.3# docker pull centos:6
タグ:バージョン
''確認''
# docker images
REPOSITORY TAG IMAGE ID ...
centos 6 fd44297e2ddb ...
centos latest fd44297e2ddb ...
centos centos6 fd44297e2ddb ...
vmwarecna/nginx latest 6d36a12c92d5 ...
***CentOSコンテナをデプロイして起動 [#e3e077d2]
bash-4.3# docker run -it centos:6 /bin/bash
[root@ac681de21257 /]# ls ←イメージに入っている
bin etc lib lost+found mnt proc run srv tmp ...
dev home lib64 media opt root sbin sys usr
[root@ac681de21257 /]# ← ctrl+p ctrl+q でプロンプトか...
&color(red){exitで出るとイメージが停止する};
***動作しているコンテナーの確認 [#v273748a]
bash-4.3# docker ps (-a) -a:バックグランドで起動している...
CONTAINER ID IMAGE COMMAND ...
931e3d406d09 centos:7 "/bin/bash"...
bd80cfbbe137 vmwarecna/nginx:latest "nginx -g '...
***コンテナの停止 [#k72e975c]
[root@ac681de21257 etc]# exit
exit
bash-4.3#
または
docker stop {コンテナー名}|{コンテナーID}
***systemd系のコンテナの起動 [#j40f4103]
systemctlでは「Failed to get D-Bus connection: Operation ...
以下の起動
# docker run --privileged --name ism centos:7 /sbin/init &
# nsenter -t $(sudo docker inspect --format '{{.State.Pi...
この場合のコンテナからの抜け出るには ctrl+D
***コンテナに入る [#r900da2f]
コンテナIDの検索
bash-4.3# docker ps
CONTAINER ID IMAGE COMMAND ...
931e3d406d09 centos:7 "/bin/bash"...
bd80cfbbe137 vmwarecna/nginx:latest "nginx -g '...
''コンテナに入るコマンド''
bash-4.3# docker attach 931e3d406d09
(enter)
[root@931e3d406d09 /]#
***コンテナ削除 [#scf741c1]
docker rm [コンテナID]
***デプロイしているコンテナをイメージとして保存 [#h0f6c1c7]
docker commit <container id> <image name>
# docker ps
CONTAINER ID IMAGE COMMAND ...
2d68bafea314 centos:6 "/bin/bash" ...
bash-4.3# docker commit 2d68bafea314 ism_centos6
89ebc240d6a44c605719c57482f0ec646cb68466e65b13eca3f5721ba...
***Docker Imagesの削除 [#y57f86cd]
docker rmi (-f) [Image ID]
# docker rmi bad4f5bfa4d6
Deleted: bad4f5bfa4d6c9aa99e235c2cfc277647e2d14aca81226d...
**参考 [#a1ad287f]
-http://qiita.com/m_pDorobou/items/46e213b4121762f73f64
-http://www.fkmsoft.jp/blog/software/virtual/docker/start...
''ネットワーク(ブリッジ)''
-http://www.agilegroup.co.jp/technote/docker-network-in-b...
-http://enakai00.hatenablog.com/entry/20140424/1398321672
''キーボード日本語化''
-https://communities.vmware.com/people/gowatana/blog/2015...
''コンテナを保存''
-http://easyramble.com/biginning-of-docker.html
-http://qiita.com/mats116/items/712575dc50513dfdf0a2
終了行:
* photon(docker) [#f6fe67a4]
RIGHT:更新日&lastmod();
VMWareのphotonをインストールしてみた。dockerのバージョン...
***Docker イメージの表示 [#fab41bc6]
イメージは実際にコンテからデプロイされ起動することができ...
# docker images
REPOSITORY TAG IMAGE ID ...
vmwarecna/nginx latest 6d36a12c92d5 ...
***インターネットからコンテナを検索 [#o1d59664]
コンテナはテンプレートみたいなもの?ここからデプロイして...
ネット上にあるコンテナの検索
bash-4.3# docker search centos
NAME DESCRIPTION ...
centos The official build...
ansible/centos7-ansible Ansible on Centos7...
tutum/centos Centos image with ...
blalor/centos Bare-bones base Ce...
***インターネットからコンテナをインストール [#j290b6f7]
docker pull [コンテナ名]:[タグ]
bash-4.3# docker pull centos
Pulling repository centos
fd44297e2ddb: Download complete
6941bfcbbfca: Download complete
41459f052977: Download complete
Status: Downloaded newer image for centos:latest
タグを指定
bash-4.3# docker pull centos:6
タグ:バージョン
''確認''
# docker images
REPOSITORY TAG IMAGE ID ...
centos 6 fd44297e2ddb ...
centos latest fd44297e2ddb ...
centos centos6 fd44297e2ddb ...
vmwarecna/nginx latest 6d36a12c92d5 ...
***CentOSコンテナをデプロイして起動 [#e3e077d2]
bash-4.3# docker run -it centos:6 /bin/bash
[root@ac681de21257 /]# ls ←イメージに入っている
bin etc lib lost+found mnt proc run srv tmp ...
dev home lib64 media opt root sbin sys usr
[root@ac681de21257 /]# ← ctrl+p ctrl+q でプロンプトか...
&color(red){exitで出るとイメージが停止する};
***動作しているコンテナーの確認 [#v273748a]
bash-4.3# docker ps (-a) -a:バックグランドで起動している...
CONTAINER ID IMAGE COMMAND ...
931e3d406d09 centos:7 "/bin/bash"...
bd80cfbbe137 vmwarecna/nginx:latest "nginx -g '...
***コンテナの停止 [#k72e975c]
[root@ac681de21257 etc]# exit
exit
bash-4.3#
または
docker stop {コンテナー名}|{コンテナーID}
***systemd系のコンテナの起動 [#j40f4103]
systemctlでは「Failed to get D-Bus connection: Operation ...
以下の起動
# docker run --privileged --name ism centos:7 /sbin/init &
# nsenter -t $(sudo docker inspect --format '{{.State.Pi...
この場合のコンテナからの抜け出るには ctrl+D
***コンテナに入る [#r900da2f]
コンテナIDの検索
bash-4.3# docker ps
CONTAINER ID IMAGE COMMAND ...
931e3d406d09 centos:7 "/bin/bash"...
bd80cfbbe137 vmwarecna/nginx:latest "nginx -g '...
''コンテナに入るコマンド''
bash-4.3# docker attach 931e3d406d09
(enter)
[root@931e3d406d09 /]#
***コンテナ削除 [#scf741c1]
docker rm [コンテナID]
***デプロイしているコンテナをイメージとして保存 [#h0f6c1c7]
docker commit <container id> <image name>
# docker ps
CONTAINER ID IMAGE COMMAND ...
2d68bafea314 centos:6 "/bin/bash" ...
bash-4.3# docker commit 2d68bafea314 ism_centos6
89ebc240d6a44c605719c57482f0ec646cb68466e65b13eca3f5721ba...
***Docker Imagesの削除 [#y57f86cd]
docker rmi (-f) [Image ID]
# docker rmi bad4f5bfa4d6
Deleted: bad4f5bfa4d6c9aa99e235c2cfc277647e2d14aca81226d...
**参考 [#a1ad287f]
-http://qiita.com/m_pDorobou/items/46e213b4121762f73f64
-http://www.fkmsoft.jp/blog/software/virtual/docker/start...
''ネットワーク(ブリッジ)''
-http://www.agilegroup.co.jp/technote/docker-network-in-b...
-http://enakai00.hatenablog.com/entry/20140424/1398321672
''キーボード日本語化''
-https://communities.vmware.com/people/gowatana/blog/2015...
''コンテナを保存''
-http://easyramble.com/biginning-of-docker.html
-http://qiita.com/mats116/items/712575dc50513dfdf0a2
ページ名: