From 8b69630b9289ef814ae52a62217c8011261d433f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=2E=20Mert=20Y=C4=B1ld=C4=B1ran?= Date: Mon, 22 Nov 2021 17:44:52 +0300 Subject: [PATCH] Replace author's username with `example` --- Development-Workflows.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Development-Workflows.md b/Development-Workflows.md index d77a921..33692c4 100644 --- a/Development-Workflows.md +++ b/Development-Workflows.md @@ -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: ```shell -$ docker build . -t mertyildiran/mizuagent:latest +$ docker build . -t example/mizuagent:latest ``` Then you need to push that image into Docker Hub: ```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 -mertyildiran@Corsair:~/.mizu$ cat config.yaml -agent-image: mertyildiran/mizuagent:latest +user@Machine:~/.mizu$ cat config.yaml +agent-image: example/mizuagent:latest telemetry: false ```