I am currently working on automating commands for a Docker container with a Python script on the host machine. This Python script for now, builds and runs a docker-compose
file, with the commands for the containers written into the docker-compose
file and the Dockerfile
itself.
What I want to do is have the Python script action all commands to run within the container, so if I have different scripts I want to run, I am not changing the container. I have tried 2 ways.
First was to run os.system()
command within the Python script, however, this works only as far as opening the shell for the container, the os.system()
command does not execute code in the Docker container itself.
The second way uses CMD within the Dockerfile
, however, this is limited and is hard coded to the container. If I have multiple scripts I have to change the Dockerfile
, I don't want this. What I want is to build a default container with all services running, then run Python scripts on the host to run a sequence of commands on the container.
I am fairly new to Docker and think there must be something I am overlooking to run scripted commands on the container. One possible solution I have come across is nsenter
. Is this a reliable solve and how does it work? Or is there a much simpler way? I have also used docker-volume
to copy the python files into the container to be run on build, however, I can still not find a solve to automate the accessing and running these python scripts from the host machine.
If the scripts need to be copied into a running container, you can do this via the
docker cp
command. e.g.docker cp myscript.sh mycontiainer:/working/dir
.Once the scripts are in the container, you can run them via a
docker exec
command. e.gdocker exec -it mycontainer /working/dir/myscript.sh
.Note, this isn't a common practice. Typically the script(s) you need would be built (not copied) into container image(s). Then when you want to execute the script(s), within a container, you would run the container via a
docker run
command. e.g.docker run -it mycontainerimage /working/dir/myscript.sh