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

[ISSUE #795] Fix doc eventmesh-runtime-quickstart-with-docker.md #798

Merged
merged 1 commit into from
Mar 1, 2022
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ eventmesh/eventmesh v1.3.0 da0008c1d03b 7 days ago 922MB
## Prepare Configuration Files
Before running the EventMesh container from downloaded image, you need to configure some files.

Here this instruction takes RocketMQ as connector for example, so that two configuration files should be created: ```eventMesh.properties``` and ```rocketmq-client.properties```.
Here this instruction takes RocketMQ as connector for example, so that two configuration files should be created: ```eventmesh.properties``` and ```rocketmq-client.properties```.

First, you may need to create such files, using following commands:
```shell
Expand All @@ -61,7 +61,7 @@ sudo touch eventmesh.properties
sudo touch rocketmq-client.properties
```

### eventMesh.properties
### eventmesh.properties

It contains properties of EventMesh runtime env and integrated plugins.

Expand Down Expand Up @@ -109,7 +109,7 @@ So that the command for running EventMesh is:
```shell
sudo docker run -d \
> -p 10000:10000 -p 10105:10105 \
> -v /data/eventmesh/rocketmq/conf/eventMesh.properties:/data/app/eventmesh/conf/eventMesh.properties \
> -v /data/eventmesh/rocketmq/conf/eventmesh.properties:/data/app/eventmesh/conf/eventmesh.properties \
> -v /data/eventmesh/rocketmq/conf/rocketmq-client.properties:/data/app/eventmesh/conf/rocketmq-client.properties \
> eventmesh/eventmesh:v1.3.0
```
Expand Down