Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Remove stray space characters between \ and \n (#3843)
Browse files Browse the repository at this point in the history
The example bash shell commands in this document are wrapped onto multiple lines with
backslashes for legibility. However, there are space characters inserted after the backslash
escapes, breaking the commands: the spaces are being escaped, not the newlines. An
attempt to copy and paste the commands directly from the documentation will fail.

Remove the spaces to fix the commands.

Signed-off-by: Jonathan Dowland <jdowland@redhat.com>
  • Loading branch information
jmtd authored Jun 29, 2022
1 parent 1c2fcf0 commit b4d640f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions website2/docs/getting-started-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ The official Apache Heron Docker image is located at the link below
In one terminal execute to start Heron in a container

```bash
$ docker run -it --rm \
-p 8889:8889 \
-p 8888:8888 \
--name local-heron \
$ docker run -it --rm \
-p 8889:8889 \
-p 8888:8888 \
--name local-heron \
apache/heron:0.20.4-incubating supervisord --nodaemon
```
In another terminal execute the following to deploy a job:
```bash
$ docker exec -it \
local-heron \
$ docker exec -it \
local-heron \
bash -c "heron submit sandbox /heron/examples/heron-eco-examples.jar org.apache.heron.eco.Eco --eco-config-file /heron/examples/heron_wordcount.yaml"
```

Expand Down

0 comments on commit b4d640f

Please sign in to comment.