Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docker readme for issue #216 #217

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. <version> can be found in Github release page
docker run -d --restart=always -p 25500:25500 tindy2013/subconverter:<version>
# then check its status
curl http://localhost:25500
# if you see `subconverter vx.x.x backend` then the container is up and running
Expand Down