From c2c0b8dc4e9bb4d7f51a1254d517d3f20a3e684d Mon Sep 17 00:00:00 2001 From: Roman Volosatovs Date: Wed, 16 Jun 2021 16:09:19 +0200 Subject: [PATCH] docs: fix image name in testing guide Signed-off-by: Roman Volosatovs --- docs/contributing/test.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/contributing/test.md b/docs/contributing/test.md index 0c4626439f..5b66ba78a4 100644 --- a/docs/contributing/test.md +++ b/docs/contributing/test.md @@ -108,10 +108,10 @@ Try this now. 2. Start a Moby development image. If you are following along with this guide, you should have a - `dry-run-test` image. + `docker-dev:dry-run-test` image. ```bash - $ docker run --privileged --rm -ti -v `pwd`:/go/src/github.com/docker/docker dry-run-test /bin/bash + $ docker run --privileged --rm -ti -v `pwd`:/go/src/github.com/docker/docker docker-dev:dry-run-test /bin/bash ``` 3. Run the unit tests using the `hack/test/unit` script.