91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何通過puppet管理遠程docker容器

發布時間:2021-11-08 11:30:23 來源:億速云 閱讀:501 作者:小新 欄目:云計算

小編給大家分享一下如何通過puppet管理遠程docker容器,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

使用腳本訪問docker容器:

root@docker:~# ./control.sh 
What you want to do?try input 'help' to get some tips(please input the words in ''): access
Please input the specific container's name:web1
root@050ebb07cf25:/#                   #已經進入docker容器,輸入exit退出,不過腳本也會退出

獲取幫助信息(不妨多試試其他命令):

root@docker:~# ./control.sh 
What you want to do?try input 'help' to get some tips(please input the words in ''): help
################################################################################################################################
                                            The helping information about this script                                           
################################################################################################################################
COMMAND                                       INFO                                                                              
################################################################################################################################
'status'                                      get the info about the running containers.                                        
'access'                                      access the specific contianer.                                                    
'manage'                                      manage the contianer,such as 'start','stop' and 'delete'.                         
'exit'                                        exit this script.                                                                 
'statusa'                                     show the infomation about all containers.                                         
'statusl'                                     show the latest infomation about container.                                       
################################################################################################################################
MAINCOMMAND                  SUBCOMMAND                  INFO                                                                   
################################################################################################################################
'manage'                     'start'                     launch a exist contianer                                               
'manage'                     'stop'                      stop a running container                                               
'manage'                     'delete'                    detele a not-running container                                         
'manage'                     'status'                    get the info about the running containers                              
'manage'                     'statusa'                   show the infomation about all containers.                              
'manage'                     'statusl'                   show the latest infomation about container.                            
################################################################################################################################
What you want to do?try input 'help' to get some tips(please input the words in ''):

stop容器,delete容器,start容器:

stop容器web1:

root@docker:~# ./control.sh 
What you want to do?try input 'help' to get some tips(please input the words in ''): manage
Please input the container name which you want to manage,or 'exit',or 'help'?: status
Running container:
CONTAINER ID        IMAGE                    COMMAND             CREATED             STATUS              PORTS                    NAMES
050ebb07cf25        training/webapp:latest   "python app.py"     12 minutes ago      Up 12 minutes       0.0.0.0:2000->5000/tcp   web1                   
0ef5d56e4c89        training/webapp:latest   "python app.py"     12 minutes ago      Up 12 minutes       0.0.0.0:1000->5000/tcp   web1/webbase,webbase   
Please input the container name which you want to manage,or 'exit',or 'help'?: web1
Do you want to 'start' or 'stop' or 'delete' your container?: stop
Notice:container is stopping
web1
Please input the container name which you want to manage,or 'exit',or 'help'?:

web1被停掉

start容器web1:

Please input the container name which you want to manage,or 'exit',or 'help'?: web1
Do you want to 'start' or 'stop' or 'delete' your container?: start
Notice:Please make sure this container is not running
web1
Please input the container name which you want to manage,or 'exit',or 'help'?: status
Running container:
CONTAINER ID        IMAGE                    COMMAND             CREATED             STATUS              PORTS                    NAMES
050ebb07cf25        training/webapp:latest   "python app.py"     14 minutes ago      Up 6 seconds        0.0.0.0:2000->5000/tcp   web1                   
0ef5d56e4c89        training/webapp:latest   "python app.py"     14 minutes ago      Up 14 minutes       0.0.0.0:1000->5000/tcp   web1/webbase,webbase   
Please input the container name which you want to manage,or 'exit',or 'help'?:

web1又啟動了

delete容器web1(必須先把它關閉):

Please input the container name which you want to manage,or 'exit',or 'help'?: web1
Do you want to 'start' or 'stop' or 'delete' your container?: stop
Notice:container is stopping
web1
Please input the container name which you want to manage,or 'exit',or 'help'?: status
Running container:
CONTAINER ID        IMAGE                    COMMAND             CREATED             STATUS              PORTS                    NAMES
0ef5d56e4c89        training/webapp:latest   "python app.py"     15 minutes ago      Up 15 minutes       0.0.0.0:1000->5000/tcp   web1/webbase,webbase         #web1被關閉
Please input the container name which you want to manage,or 'exit',or 'help'?: web1
Do you want to 'start' or 'stop' or 'delete' your container?: delete
Notice:You cannot delete a running container,if the container is running,please stop it first!
web1
Please input the container name which you want to manage,or 'exit',or 'help'?: statusa
All infomation about containers:\n
CONTAINER ID        IMAGE                    COMMAND             CREATED             STATUS                     PORTS                    NAMES
0ef5d56e4c89        training/webapp:latest   "python app.py"     17 minutes ago      Up 17 minutes              0.0.0.0:1000->5000/tcp   webbase                 
4de1685a386e        training/webapp:latest   "/bin/bash"         37 hours ago        Exited (0) 37 hours ago                             backstabbing_lovelace   
c915cb516b02        training/webapp:latest   "python app.py"     37 hours ago        Exited (-1) 37 hours ago                            clever_mccarthy         #沒有web1的相關信息了

web1被刪除

tips:在manage會話下輸入exit,將會返回主會話,再輸入一次exit退出腳本:

root@docker:~# ./control.sh 
What you want to do?try input 'help' to get some tips(please input the words in ''): manage
Please input the container name which you want to manage,or 'exit',or 'help'?: exit                #退出manage會話
Exiting
What you want to do?try input 'help' to get some tips(please input the words in ''): exit          #主會話中退出
root@docker:~#

以上是“如何通過puppet管理遠程docker容器”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

建德市| 常宁市| 上林县| 五常市| 镇江市| 平湖市| 原平市| 锡林郭勒盟| 侯马市| 宜章县| 定兴县| 惠东县| 建德市| 河源市| 潼关县| 宾阳县| 三穗县| 扎鲁特旗| 宜宾县| 晋中市| 光泽县| 旺苍县| 安新县| 志丹县| 岑溪市| 资中县| 大余县| 建阳市| 湟中县| 遵义县| 南召县| 林口县| 岗巴县| 湄潭县| 巨鹿县| 高州市| 磴口县| 汉源县| 静乐县| 景德镇市| 时尚|