From 56af290d78dd6f35fef93d46f92c6d996e55c9ac Mon Sep 17 00:00:00 2001 From: Deepak Pathak Date: Tue, 18 Jul 2023 01:35:35 +0700 Subject: [PATCH] Update develop.md (#17643) database container was started with --hostname db and not --name db --- language/golang/develop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/golang/develop.md b/language/golang/develop.md index 37d2f7860f..6bda008fe3 100644 --- a/language/golang/develop.md +++ b/language/golang/develop.md @@ -391,7 +391,7 @@ There are a few points to note about this command. ``` * The total number of stored messages is `0` for now. This is fine, because we had not posted anything to our application yet. -* We refer to the database container by its hostname, which is `db`. This is what we had the `--name db` for when we started the database container. +* We refer to the database container by its hostname, which is `db`. This is what we had the `--hostname db` for when we started the database container. * The actual password does not matter, but it must be set to something to avoid confusing the example application. * The container we've just run is named `rest-server`. These names are useful for managing the container lifecycle: