I am trying to execute some docker containers, without docker itself !!!
Maybe you know CloudSuite Benchmarks
. I am trying to run the MediaStreaming one without the Docker (I need the executables and not the containers, because I have to run them via an intel pintool that uses executables)
I used the export
instruction like that:
docker export streaming_server > server.tar.gz
then I unzipped the tar files. I am not sure, what should I do on the next step. As you can see on the link, things are getting tricky. I have to execute something like that:
docker run -d --name streaming_server --volumes-from streaming_dataset --net streaming_network cloudsuite/media-streaming:server
Any ideas how to do it? I did try it first on hello-wolrd
but things were more easy, after the unzip, I had just an executable, now I am not sure how to do it.
Thanks in advance!