docker python api 安裝配置的詳解
深州網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),深州網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為深州千余家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站建設(shè)要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的深州做網(wǎng)站的公司定做!
1.docker宿主機(jī)配置文件修改
$vim /etc/default/docker #再已有OPTS中添加 DOCKER_OPTS="-H tcp://0.0.0.0:2375 -H unix://var/run/docker.sock" 使得可以通過tcp的2375端口連接到docker守護(hù)進(jìn)程中,第二個(gè)-H及之后的內(nèi)容可以省略
2.安裝docker-py
$sudo pip install docker-py
3.編寫api腳本
參考文檔
http://docker-py.readthedocs.org/en/latest/
from docker import Client d=Client(base_url='tcp://10.109.252.221:2375',version='auto',timeout=10) #注意填寫url端口版本號(hào)和超時(shí)時(shí)間 def containerCreate(**command): container=d.create_containter(**command) print container #這里使用非關(guān)鍵字可變長(zhǎng)參數(shù)**command,可以將需要使用的參數(shù)以字典形式傳輸,并且函數(shù)會(huì)自動(dòng)識(shí)別字典內(nèi)的參數(shù) containerCreate(**{'name': 'test1', 'command': '/bin/bash','image':'ubuntu'}) #這里注意要使用**雙星號(hào)傳實(shí)參,不然會(huì)出錯(cuò)。
4.端口綁定、磁盤掛載和link操作
def containerCreate(port, volume, link, **command): # 創(chuàng)建容器 command['host_config']=d.create_host_config(port_bindings=port, binds=[volume],links=link) container = d.create_container(**command) d.start(container=container.get('Id')) print container containerCreate(**{'name': 'test1','stdin_open':True,'tty':True, 'command': '/bin/bash', 'image': '10.109.252.221:5000/ubuntu', 'ports':[8008],'port':{8008:9995},'volume':'/home/ubuntu/test:/test','link':{'MySQL':'db'}}) #其中,ports必須聲明,port和volume是我自己寫的,用來傳遞參數(shù) #ports聲明容器開放的端口,port中,第一個(gè)是容器端口,后一個(gè)是主機(jī)端口,正好與dokcer run -p相反 #link操作需要傳遞字典或元組,我自己使用元組沒有成功,用字典即可。
如有疑問請(qǐng)留言或者到本站社區(qū)交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!
網(wǎng)站名稱:dockerpythonapi安裝配置的詳解
網(wǎng)址分享:http://redsoil1982.com.cn/article6/jiejig.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App設(shè)計(jì)、Google、用戶體驗(yàn)、網(wǎng)站設(shè)計(jì)、網(wǎng)站設(shè)計(jì)公司、云服務(wù)器
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)