真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

dockerpythonapi安裝配置的詳解

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ì)本站的支持!


文章名稱:dockerpythonapi安裝配置的詳解
當(dāng)前鏈接:http://weahome.cn/article/jiejig.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部