File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ The latest release of HyperFlow is 1.1.0
2121* Run example workflows using command ` hflow run <wf_directory> ` , for example:<br >``` ./bin/hflow run ./examples/Sqrsum ```
2222* Optionally, you can add directory ` <hyperflow_root_dir>/bin ` to your system ` PATH `
2323
24- ### Using docker image
24+ ## Using Docker image
2525* Build the image: ` docker build -t hyperflow . `
2626* Start redis container: ` docker run --name redis -d redis `
2727 * [ OPTIONAL] If you plan on using amqp executor, start a rabbitmq container: ` docker run -d --name rabbitmq rabbitmq:3 `
2828* Run hyperflow server: ` docker run -d --rm --link=redis -e "REDIS_URL=redis://redis" --name hyperflow -p 8080:80 hyperflow `
2929 * [ OPTIONAL] or with amqp executor: ` docker run -d --rm --link=rabbitmq --link=redis -e "AMQP_URL=amqp://rabbitmq" -e "REDIS_URL=redis://redis" --name hyperflow -p 8080:80 hyperflow `
30- * Verify that the server responds with: ` curl localhost:8080 -v ` , the output should contain a string: ` Cannot GET / `
30+ * Verify that the server responds with: ` curl localhost:8080 -v ` , the output should contain a string: ` Cannot GET / `
You can’t perform that action at this time.
0 commit comments