From 04d49d06aead1829337a47b9ada57264f2a7afba Mon Sep 17 00:00:00 2001 From: Luitbald Date: Thu, 23 Jul 2020 12:00:13 +1000 Subject: [PATCH] Update docker readme for issue #216 --- README-docker.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README-docker.md b/README-docker.md index 0c85770cc..addc8eca5 100644 --- a/README-docker.md +++ b/README-docker.md @@ -6,6 +6,9 @@ For running this docker, simply use the following commands: ```bash # run the container detached, forward internal port 25500 to host port 25500 docker run -d --restart=always -p 25500:25500 tindy2013/subconverter:latest +# if you are deploying this project to a production environment, you may choose to +# use the latest released version. can be found in Github release page +docker run -d --restart=always -p 25500:25500 tindy2013/subconverter: # then check its status curl http://localhost:25500 # if you see `subconverter vx.x.x backend` then the container is up and running