This is a docker image of Samsaadhanii -- a Sanskrit computational toolkit developed by the Department of Sanskrit Studies, University of Hyderabad.
-
Run the following command in your terminal to start the app. If the image is not already downloaded, it might take some time to download it.
docker run --rm -it -p 80:80 vipranarayan14/samsaadhanii
-
Open http://localhost/scl/ in your browser to use the app.
-
Press
Ctrl+C
in your terminal to stop the app.
To start the app in the background, run the following command in your terminal:
docker run --rm -d -p 80:80 --name samsaadhanii vipranarayan14/samsaadhanii
To stop the app running in background, use the following command:
docker stop samsaadhanii
Error starting userland proxy: ... bind: address already in use.
If you get the above error while running the container (docker run ...
), try using a different host port, say, 3000:
docker run --rm -it -p 3000:80 vipranarayan14/samsaadhanii