This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Description
Trying to run torchserve model in docker using following code
sudo docker run --rm -it -v $(pwd)/config.properties:/tmp/config.properties -v $(pwd)/output:/home/model-server/model-store -p 8080:8080 -p 8081:8081 pytorch/torchserve:latest torchserve --start --model-store model-store --models detection=classifier.mar --ts-config /tmp/config.properties
It is running already for hours and nothing happens
when I check docker containers
it creates a container however, the container is not running.
What can be an issue? Thanks!