I'd like to create a procedure using docker-py to run multiple commands inside a Docker container. Reading the documentation, I have found that I can use the command option when creating the container..something like this:
c.create_container(image="myimage", command="mycommand")
Is there a way to run other commands on the just created container?
Thanks!