浏览代码

bash commands while in the container aren't in the transcript! Added.

Faiz K 12 年之前
父节点
当前提交
22df1249b5
共有 1 个文件被更改,包括 11 次插入1 次删除
  1. 11 1
      docs/sources/examples/running_ssh_service.rst

+ 11 - 1
docs/sources/examples/running_ssh_service.rst

@@ -40,7 +40,17 @@ The password is 'screencast'
 	 # now let's connect using -i for interactive and with -t for terminal 
 	 # we execute /bin/bash to get a prompt.
 	 $ docker run -i -t base /bin/bash
-	 # now let's commit it 
+	 # yes! we are in!
+     # now lets install openssh
+     $ apt-get update
+     $ apt-get install openssh-server
+     # ok. lets see if we can run it.
+     $ which sshd
+     # we need to create priviledge separation directory
+     $ mkdir /var/run/sshd
+     $ /usr/sbin/sshd
+     $ exit
+     # now let's commit it 
 	 # which container was it?
 	 $ docker ps -a |more
 	 $ docker commit a30a3a2f2b130749995f5902f079dc6ad31ea0621fac595128ec59c6da07feea dhrp/sshd