You are viewing a single comment's thread from:
RE: Steemfeed-JS - A NodeJS price feed for witneses
Just an observation. The following command runs the process in the foreground:
docker run -it --rm --name feed steemfeed-js
It should be like this, if you want to run it detached in the background:
docker run -itd --rm --name feed steemfeed-js
ahhh thanks for this! Just what I needed :-)