简体   繁体   中英

How to execute a local python script into a docker from another python script?

Let me clarify what I want to do.

I have a python script in my local machine that performs a lot of stuff and in certain point it have to call another python script that must be executed into a docker container. Such script have some input arguments and it returns some results.

So i want to figure out how to do that.

Example:

def function()
    do stuff
         .
         .
         .
    do more stuff

    ''' call another local script that must be executed into a docker'''

    result = execute_python_script_into_a_docker(python script arguments)

The docker has been launched in a terminal as:

docker run -it -p 8888:8888 my_docker

You can add your file inside docker container thanks to -v option.

docker run -it -v myFile.py:/myFile.py -p 8888:8888 my_docker

And execute your python inside your docker with : py /myFile.py

or with the host:

docker run -it -v myFile.py:/myFile.py -p 8888:8888 my_docker py /myFile.py

And even if your docker is already running

docker exec -ti docker_name py /myFile.py

docker_name is available after a docker ps command.

Or you can specify name in the run command like:

docker run -it --name docker_name -v myFile.py:/myFile.py -p 8888:8888 my_docker

It's like:

-v absoluteHostPath:absoluteRemotePath

You can specify folder too in the same way:

-v myFolder:/customPath/myFolder

More details at docker documentation .

You can use docker's python SDK library . First you need to move your script there, I recommend you do it when you create the container or when you start it as Callmemath mentioned:

docker run -it -v myFile.py:/myFile.py -p 8888:8888 my_docker

Then to run the script using the library:

...
client = docker.client.from_env()
container = client.containers.get(CONTAINER_ID)
exit_code, output = container.exec_run("python your_script.py script_args")
... 

you have to use docker exec -it image_name python /filename

Note: To use 'docker exec' you must run the container using docker run

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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