Skip to content

Commit f439bc5

Browse files
Merge pull request #744 from carolynvs/install-instructions
Explain how to install a specific version
2 parents 9966e7c + 28099e3 commit f439bc5

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

docs/content/install.md

+10-6
Original file line numberDiff line numberDiff line change
@@ -55,25 +55,29 @@ iwr "https://cdn.deislabs.io/porter/canary/install-windows.ps1" -UseBasicParsing
5555

5656
# Older Version
5757

58-
Install an older version of porter. This also installs the latest version of all the mixins.
59-
If you need a specific version of a mixin, use the `--version` flag when
60-
[installing the mixin](#mixin).
58+
Install an older version of porter, starting with `v0.18.1-beta.2`. This also
59+
installs the latest version of all the mixins. If you need a specific version of
60+
a mixin, use the `--version` flag when [installing the mixin](#mixins).
6161

6262
See the porter [releases][releases] page for a list of older porter versions.
63+
Set `VERSION` to the version of Porter that you want to install.
6364

6465
## Older Version MacOS
6566
```
66-
curl https://cdn.deislabs.io/porter/VERSION/install-mac.sh | bash
67+
VERSION="v0.18.1-beta.2"
68+
curl https://cdn.deislabs.io/porter/$VERSION/install-mac.sh | bash
6769
```
6870

6971
## Older Version Linux
7072
```
71-
curl https://cdn.deislabs.io/porter/VERSION/install-linux.sh | bash
73+
VERSION="v0.18.1-beta.2"
74+
curl https://cdn.deislabs.io/porter/$VERSION/install-linux.sh | bash
7275
```
7376

7477
## Older Version Windows
7578
```
76-
iwr "https://cdn.deislabs.io/porter/VERSION/install-windows.ps1" -UseBasicParsing | iex
79+
$VERSION="v0.18.1-beta.2"
80+
iwr "https://cdn.deislabs.io/porter/$VERSION/install-windows.ps1" -UseBasicParsing | iex
7781
```
7882

7983
# Mixins

0 commit comments

Comments
 (0)