File tree 1 file changed +10
-6
lines changed
1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -55,25 +55,29 @@ iwr "https://cdn.deislabs.io/porter/canary/install-windows.ps1" -UseBasicParsing
55
55
56
56
# Older Version
57
57
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 ) .
61
61
62
62
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.
63
64
64
65
## Older Version MacOS
65
66
```
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
67
69
```
68
70
69
71
## Older Version Linux
70
72
```
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
72
75
```
73
76
74
77
## Older Version Windows
75
78
```
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
77
81
```
78
82
79
83
# Mixins
You can’t perform that action at this time.
0 commit comments