Closed jimmy-walker closed 4 years ago
+1
$docker exec -it containerID bash
You can use more docker parameters like -v
to mount model files into the docker container.
For testing, I always run with docker run -it -p 8500:8500 -v /:/host tobegit3hub/simple_tensorflow_serving bash
so that I can run the server by myself and read any model files in the host server.
I use the docker way of installation. But when I run the command
docker run -d -p 8500:8500 tobegit3hub/simple_tensorflow_serving
, I donnot know how to pass the setsimple_tensorflow_serving --model_base_path="./models/tensorflow_template_application_model"
to container. Appreciate for any help.