Skip to content
Snippets Groups Projects
Unverified Commit d92287df authored by Justin Welch's avatar Justin Welch Committed by GitHub
Browse files

Merge pull request #224 from Jolly-Pirate/patch-1

Fix ports in docker command
parents 1154db16 5af0b23a
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,7 @@ The easiest way to get up and running with jussi is by running it in a docker co ...@@ -9,7 +9,7 @@ The easiest way to get up and running with jussi is by running it in a docker co
1) Copy the example `DEV_config.json` to a local directory and make any necessary edits. 1) Copy the example `DEV_config.json` to a local directory and make any necessary edits.
2) Run this docker command (replace `/path/to/config.json` with the path to your config file): 2) Run this docker command (replace `/path/to/config.json` with the path to your config file):
``` ```
docker run -it --env JUSSI_UPSTREAM_CONFIG_FILE=/app/config.json -v /path/to/config.json:/app/config.json -p 9000:9000 steemit/jussi:latest docker run -it --env JUSSI_UPSTREAM_CONFIG_FILE=/app/config.json -v /path/to/config.json:/app/config.json -p 8080:8080 steemit/jussi:latest
``` ```
You can build jussi using docker which will run it's full test suite with `docker build -t="myname/jussi:latest" .` You can build jussi using docker which will run it's full test suite with `docker build -t="myname/jussi:latest" .`
...@@ -147,4 +147,4 @@ Certain features of jussi can be configured using environment variables. If you ...@@ -147,4 +147,4 @@ Certain features of jussi can be configured using environment variables. If you
## Additional documentation ## Additional documentation
For more indepth documentation on jussi including examples, check out the section on it in the steem dev portal: https://developers.steem.io/services/#services-jussi For more indepth documentation on jussi including examples, check out the section on it in the steem dev portal: https://developers.steem.io/services/#services-jussi
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment