zoukankan      html  css  js  c++  java
  • Docker创建支持ssh服务的容器和镜像

    原文链接:Docker创建支持ssh服务的容器和镜像

    1. 这里使用的centos作为容器,所以首先下载centos的images

    # sudo docker pull centos

    2. 下载后执行一个centos的容器,这里使用centos6作为我測试的容器

    # sudo docker run --name=centos-ssh -i -t centos:centos6 /bin/bash

    3. 安装openssh-server服务软件包

    # yum install openssh-server

    4. 编辑sshd的配置文件/etc/ssh/sshd_config,将当中UsePAM參数设置成“no”

    5. 启动sshd服务

    # /etc/init.d/sshd start

    6. 加入測试用户admin,passwordadmin

    # useradd admin
    # echo 'admin:admin' | chpasswd

    7. 为了使新加入的用户能够执行sudo命令。须要安装sudo软件包。并将admin加入到sudoers里

    # yum install sudo    <--安装sudo软件包
    # visudo              <--编辑sudoers,加入以下的行到文件中
     
    admin   ALL=(ALL)       ALL

    8. 測试。做完上面工作之后,使用ifconfig来查看一下容器的ip,或者使用“sudo docker inspect ”查看。然后就能够在宿主机器上通过ssh admin@<ip>来訪问新创建的docker容器了。

    9. 假设想要把做好的支持ssh服务的容器作为一个docker的镜像。先退出容器。然后使用以下的命令来创建

    # sudo docker commit <container id> <image name>

  • 相关阅读:
    EcFinal游记
    简要介绍补码的原理
    【SCOI2007】降雨量
    【ecfinal2019热身赛】B题
    【HAOI2011】problem a
    20200301(ABC)题解 by李旭晨
    20200228(ABC)题解 by 马鸿儒
    20200220(C)题解 b刘存
    20200225(DEF)题解 by 马鸿儒
    20200224(ABC)题解 by 马鸿儒
  • 原文地址:https://www.cnblogs.com/bhlsheji/p/5088839.html
Copyright © 2011-2022 走看看