【微服务轻量化容器技术相关】同事分享的Docker学习汇总

还没时间去练习:

  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 已经开启。
 

       

 

转载于:https://www.cnblogs.com/Ironman-Jason/p/5822999.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值