简体   繁体   English

使用 python 脚本启动 docker 容器

[英]Starting docker container using python script

I would like to start the docker container from a python script.我想从 python 脚本启动 docker 容器。 When i call the docker image through my code , i am unable to start the docker container当我通过我的代码调用 docker 镜像时,我无法启动 docker 容器

import subprocess
import docker


from subprocess import Popen, PIPE


def kill_and_remove(ctr_name):
    for action in ('kill', 'rm'):
        p = Popen('docker %s %s' % (action, ctr_name), shell=True,
                  stdout=PIPE, stderr=PIPE)
        if p.wait() != 0:
            raise RuntimeError(p.stderr.read())


def execute():
    ctr_name = 'sml/tools:8' # docker image file name
    p = Popen(['docker', 'run', '-v','/lib/modules:/lib/modules',
               '--cap-add','NET_ADMIN','--name','o-9000','--restart',
               'always', ctr_name ,'startup',' --base-port',
               9000,' --orchestrator-integration-license',
               ' --orchestrator-integration-license','jaVl7qdgLyxo6WRY5ykUTWNRl7Y8IzJxhRjEUpKCC9Q='
               ,'--orchestrator-integration-mode'],
              stdin=PIPE)
    out = p.stdin.write('Something')

    if p.wait() == -20:  # Happens on timeout

        kill_and_remove(ctr_name)

    return out

following are docker container details for your reference以下是 docker 容器详细信息供您参考

dev@dev-VirtualBox:sudo docker ps -a
[sudo] password for dev: 
CONTAINER ID        IMAGE                     COMMAND                  CREATED             STATUS              PORTS               NAMES
79b3b9d215f3        sml/tools:8   "/home/loadtest/st..."   46 hours ago        Up 46 hours                             pcap_replay_192.168.212.131_9000_delay_dirty_1

Could some one suggest me why i could not start my container through my program有人可以告诉我为什么我无法通过我的程序启动我的容器吗

docker-py ( https://github.com/docker/docker-py ) should be used to control Docker via Python. docker-py ( https://github.com/docker/docker-py ) 应该用于通过 Python 控制 Docker。

This will start an Ubuntu container running sleep infinity .这将启动一个运行sleep infinity的 Ubuntu 容器。

import docker

client = docker.from_env()
client.containers.run("ubuntu:latest", "sleep infinity", detach=True)

Have a look at https://docker-py.readthedocs.io/en/stable/containers.html for more details (capabilities, volumes, ..).查看https://docker-py.readthedocs.io/en/stable/containers.html了解更多详细信息(功能、容量等)。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM