标签:
还没时间去练习:
https://azure.microsoft.com/zh-cn/blog/containers-docker-windows-and-trends/
https://docs.docker.com/engine/understanding-docker/
https://github.com/wsargent/docker-cheat-sheet
-To Enable VT, it should be enabled in BIOS (HP: Press F10, password : gE51sFqc , Advanced-> Device Configuration)
I got mine to work by adding HTTP_PROXY and HTTPS_PROXY with the correct proxy value into my "System variables" under Environment Variables dialog.
FQDN: docker-registry.eecloud.nsn-net.net
https://confluence.int.net.nokia.com/display/EECloud/Global+Docker+Container+Service+for+EE+Cloud
https://confluence.int.net.nokia.com/display/EECloud/Docker+registry+in+eecloud
A Brief Introduction to Linux Containers with LXC
http://blog.scottlowe.org/2013/11/25/a-brief-introduction-to-linux-containers-with-lxc/
What is the Linux Kernel and What Does It Do?
7. 使用Dockerfile来启动sshd:
7.1 创建Dockerfile, 基于基线image:centos6_oodee,在build新image时,执行如下命令: /usr/sbin/sshd && /bin/bash,这样新image在启动时就可以加载sshd。
内容如下:
FROM centos6_oodee
docker build -t centos6_oodee_with_sshd .
7.3创建container:
docker run -t -i centos6_oodee_with_sshd &
7.4 docker start container后 docker attach 上去top即可看到sshd 已经开启。
标签:
原文地址:http://www.cnblogs.com/Ironman-Jason/p/5822999.html