安装docker的python sdk
[[email protected] ~]#
pip install docker
这里从最简单的运行一个容器开始,在容器里面运行一段命令"echo "hello" "world""
In [1]: import docker In [2]: client = docker.from_env() In [3]: print client.containers.run("redis", ["echo", "hello","world"]) hello world
当然这些你肯定是不会满足的,你想后台运行你的容器“detach”参数会满足你的需求.你可以通过启动容器后的结果获取容器的容器ID
In [13]: container = client.containers.run("registry.cn-hangzhou.aliyuncs.com/forker/redis",detach=True) In [14]: print container.id 1cb26e2f144b453fc7857518ea4dba39058af5387d602515583cb21d1be4b50b
现在你可以管理你正在运行的容器列表了,这里使用“client.containers.list()”方法获取容器对象列表,进行遍历输出容器ID。
In [24]: for i in client.containers.list(): ....: print i.id ....: 1cb26e2f144b453fc7857518ea4dba39058af5387d602515583cb21d1be4b50b 066a454c8d0b0923325448bb72ca792d1bdd26058cb95452a293f8edb3f2d978 8a2681f1100c0e01683ef65b15bfd7737e5a273b309fb72b7144fb216ea24c2d da2a940052080863c0df07478dfb795fabdf9a6e258f3c651461c161d182ae3f
通过遍历输出我们知道现在有哪些容器运行,我们就能对这些容器进行操作,例如关掉他们,这是一个爽快的操作。
In [25]: for i in client.containers.list(): print i.stop() ....: None None
当然大多数情况并不像停止容器,我们更倾向于观察下docker容器的信息,例如查看容器日志
In [26]: s=client.containers.get(‘da2a94005208‘) In [29]: print s.logs() time="2017-02-20T09:11:00Z" level=info msg="Listening for health checks on 0.0.0.0:80/healthcheck" time="2017-02-20T09:11:00Z" level=info msg="Connecting to cattle event stream." time="2017-02-20T09:11:00Z" level=info msg="Subscribing to metadata changes."
当然“s”里面还有更多方法等你尝试如下:
In [30]: print s. s.attach s.client s.diff s.get_archive s.kill s.pause s.remove s.restart s.stats s.top s.wait s.attach_socket s.collection s.exec_run s.id s.logs s.put_archive s.rename s.short_id s.status s.unpause s.attrs s.commit s.export s.id_attribute s.name s.reload s.resize s.start s.stop s.update
现在容器的基本操作你都了解了,现在介绍下镜像的基本操作,现在让你查看下镜像列表
In [30]: for image in client.images.list(): ....: print image.id ....: sha256:b12d4d26900a5e71a16eb317cb0d8275514c522c2885fcd8ceff5469252c644b sha256:e9fbe11760fd7ad68dbdfe1a58c9a3350452e5c7eebd60a9af47ded5f1e47918 sha256:24d2df8fa301bfc3043b59e9a874df1338f835f742a0123cfb4f3a6e152b5f88 当然“image”的方法也不止这些,更多方法如下: In [31]: print image. image.attrs image.collection image.id image.reload image.short_id image.tags image.client image.history image.id_attribute image.save image.tag
既然你可以看到你的镜像,当然你也需要拉取新的镜像
import docker client = docker.from_env() image = client.images.pull("alpine") print image.id 我们同样可以提交容器去创建一个镜像 import docker client = docker.from_env() container = client.run("alpine", ["touch", "/helloworld"], detached=True) container.wait() image = container.commit("helloworld") print image.id 这里只是介绍了一些简单的功能,如果需要更复杂的操作可以去官方SDK文档看看https://docker-py.readthedocs.io/en/stable/
时间: 2024-10-12 12:07:24