diff --git a/INSTALL.md b/INSTALL.md
index 370df963e..ef955e206 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -82,7 +82,7 @@ $ which docker
 /usr/local/bin/docker
 $ docker version
 ...
- Azure integration  0.1.4
+ Cloud integration  0.1.6
 ...
 ```
 
diff --git a/cli/cmd/version.go b/cli/cmd/version.go
index 370732209..6b0facedb 100644
--- a/cli/cmd/version.go
+++ b/cli/cmd/version.go
@@ -55,6 +55,6 @@ func runVersion(cmd *cobra.Command, version string) error {
 		return nil
 	}
 	var s string = string(versionResult)
-	fmt.Print(strings.Replace(s, "\n Version:", "\n Azure integration  "+displayedVersion+"\n Version:", 1))
+	fmt.Print(strings.Replace(s, "\n Version:", "\n Cloud integration  "+displayedVersion+"\n Version:", 1))
 	return nil
 }
diff --git a/docs/install/linux.md b/docs/install/linux.md
index eb89d69b2..60afbc622 100644
--- a/docs/install/linux.md
+++ b/docs/install/linux.md
@@ -82,7 +82,7 @@ $ which docker
 /usr/local/bin/docker
 $ docker version
 ...
- Azure integration  0.1.4
+ Cloud integration  0.1.6
 ...
 ```
 
diff --git a/tests/e2e/e2e_test.go b/tests/e2e/e2e_test.go
index b8fb14e02..7b4db68d7 100644
--- a/tests/e2e/e2e_test.go
+++ b/tests/e2e/e2e_test.go
@@ -370,7 +370,7 @@ func TestVersion(t *testing.T) {
 
 	t.Run("azure version", func(t *testing.T) {
 		res := c.RunDockerCmd("version")
-		res.Assert(t, icmd.Expected{Out: "Azure integration"})
+		res.Assert(t, icmd.Expected{Out: "Cloud integration"})
 	})
 
 	t.Run("format", func(t *testing.T) {