还没时间去练习:

  1. Docker commands:
    1. docker images (list all image on this host)
    2. docker ps -a ( list all containers on this host)
    3. docker run -t -i centos6_oodee /bin/bash ( create a container with command)
    4. docker start 091a802729cd ( start one instance of the container).
    5. docker attach 091a802729cd (login the instance)
  2. Learn about Virtualization and Containers

https://azure.microsoft.com/zh-cn/blog/containers-docker-windows-and-trends/

  1. Docker

https://www.docker.com/

https://docs.docker.com/engine/understanding-docker/

https://github.com/wsargent/docker-cheat-sheet

https://hub.docker.com/

  1. Tips to install Docker on Windows
    1. Docker only support 64-bit system and for windows Virtualization Technology must be enabled.

-To Enable VT,  it should be enabled in BIOS (HP: Press F10,  password : gE51sFqc , Advanced-> Device Configuration)

    1. For Windows sitting behind a corporate proxy, docker init cannot work properly.

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.

 

  1. Private Docker registry in Nokia

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

  1. 延伸阅读

A Brief Introduction to Linux Containers with LXC

http://blog.scottlowe.org/2013/11/25/a-brief-introduction-to-linux-containers-with-lxc/

https://linuxcontainers.org/

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

            ENTRYPOINT /usr/sbin/sshd && /bin/bash
         7.2在Dockerfile所在目录执行:
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 已经开启。
 

最新文章

  1. 打印发现function toUpperCase() { [native code] }
  2. 初学c# -- 学习笔记(二)
  3. 构造函数创建对象和Object.create()实现继承
  4. 静态局部变量、静态全局变量、extern全局变量、自动变量 札记
  5. 报错 for input String ...
  6. MySQL中concat函数
  7. 两端对齐布局与text-align:justify
  8. Android图片色彩变幻
  9. 我的Python笔记补充:入门知识拾遗
  10. js问题: is not a function
  11. 自学Python6.4-内置模块(2)
  12. .NET解决[Serializable] Attribute引发的Json序列化k_BackingField
  13. create-react-app脚手架的安装和目录结构介绍
  14. 参看dll参数类型
  15. Spark RDD、DataFrame和DataSet的区别
  16. python numpy 学习
  17. python当中的装饰器
  18. 微信 oauth 登录 ,回调两次,一个坑,记录一下。
  19. RabbitMq入门与基本使用
  20. WPF/UWP 的 Grid 布局竟然有 Bug,还不止一个!了解 Grid 中那些未定义的布局规则

热门文章

  1. HDU 4062 Partition
  2. Winform DataGridView CheckBoxColumn c# 单选 解决方案
  3. bdev文件系统
  4. [转] 数据库加锁 sql加锁的
  5. python基础语言以及if/while语句结构
  6. Swift Array copy 的线程安全问题
  7. Curator Recipes(Cache&Counter)
  8. vim编辑器的简单使用
  9. 二、mongo数据库
  10. Apache Tomcat部署java web项目