Replace author's username with example

M. Mert Yıldıran 2021-11-22 17:44:52 +03:00
parent fbf83ba9fd
commit 8b69630b92

@ -8,20 +8,20 @@ In this tutorial we'll explain two development workflows for [Mizu](https://gith
Whenever you make changes in the `agent` and `tap` packages or protocol extensions to test it; you first need to build a Docker image: Whenever you make changes in the `agent` and `tap` packages or protocol extensions to test it; you first need to build a Docker image:
```shell ```shell
$ docker build . -t mertyildiran/mizuagent:latest $ docker build . -t example/mizuagent:latest
``` ```
Then you need to push that image into Docker Hub: Then you need to push that image into Docker Hub:
```shell ```shell
$ docker push mertyildiran/mizuagent:latest $ docker push example/mizuagent:latest
``` ```
Set the `agent-image` to `mertyildiran/mizuagent:latest` in the Mizu config YAML (on path `~/.mizu/config.yaml`): Set the `agent-image` to `example/mizuagent:latest` in the Mizu config YAML (on path `~/.mizu/config.yaml`):
```shell ```shell
mertyildiran@Corsair:~/.mizu$ cat config.yaml user@Machine:~/.mizu$ cat config.yaml
agent-image: mertyildiran/mizuagent:latest agent-image: example/mizuagent:latest
telemetry: false telemetry: false
``` ```