mirror of https://github.com/docker/docs.git
Fix version variables for e2e install
This commit is contained in:
parent
178efc1968
commit
65eab16071
|
@ -149,8 +149,6 @@ defaults:
|
||||||
- scope:
|
- scope:
|
||||||
path: "datacenter"
|
path: "datacenter"
|
||||||
values:
|
values:
|
||||||
ucp_latest_image: "docker/ucp:3.0.0"
|
|
||||||
dtr_latest_image: "docker/dtr:2.5.0"
|
|
||||||
enterprise: true
|
enterprise: true
|
||||||
- scope:
|
- scope:
|
||||||
path: "ee/dtr"
|
path: "ee/dtr"
|
||||||
|
@ -199,7 +197,10 @@ defaults:
|
||||||
values:
|
values:
|
||||||
ucp_org: "docker"
|
ucp_org: "docker"
|
||||||
ucp_repo: "ucp"
|
ucp_repo: "ucp"
|
||||||
|
dtr_repo: "dtr"
|
||||||
ucp_version: "3.0.0"
|
ucp_version: "3.0.0"
|
||||||
|
dtr_version: "2.5.0"
|
||||||
|
dtr_latest_image: "docker/dtr:2.5.0"
|
||||||
- scope:
|
- scope:
|
||||||
path: "datacenter/ucp/2.2"
|
path: "datacenter/ucp/2.2"
|
||||||
values:
|
values:
|
||||||
|
|
|
@ -45,7 +45,7 @@ Use ssh to log in to the host where you want to install UCP and run:
|
||||||
```bash
|
```bash
|
||||||
docker container run --rm -it --name ucp \
|
docker container run --rm -it --name ucp \
|
||||||
-v /var/run/docker.sock:/var/run/docker.sock \
|
-v /var/run/docker.sock:/var/run/docker.sock \
|
||||||
{{ page.ucp_latest_image }} install \
|
{{ page.ucp_org }}/{{ page.ucp_repo }}:{{ page.ucp_version }} install \
|
||||||
--host-address <node-ip-address> \
|
--host-address <node-ip-address> \
|
||||||
--interactive
|
--interactive
|
||||||
```
|
```
|
||||||
|
@ -97,7 +97,7 @@ Use ssh to log in to the host where you already installed UCP, and run:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker container run -it --rm \
|
docker container run -it --rm \
|
||||||
{{ page.dtr_latest_image }} install \
|
{{ page.ucp_org }}/{{ page.dtr_repo }}:{{ page.dtr_version }} install \
|
||||||
--ucp-node <node-hostname> \
|
--ucp-node <node-hostname> \
|
||||||
--ucp-insecure-tls
|
--ucp-insecure-tls
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue