1.7 KiB
title | description | keywords | |
---|---|---|---|
Install UCP offline | Learn how to install Docker Universal Control Plane. on a machine with no internet access. |
|
The procedure to install Docker Universal Control Plane on a host is the same, whether that host has access to the internet or not.
The only difference when installing on an offline host, is that instead of pulling the UCP images from Docker Hub, you use a computer that is connected to the internet to download a single package with all the images. Then you copy that package to the host where you’ll install UCP.
-
Get the UCP package.
Use a computer with internet access to download a single package with all Docker Datacenter components:
$ wget https://packages.docker.com/caas/ucp-2.0.0-beta3_dtr-2.1.0-beta3.tar.gz -O docker-datacenter.tar.gz
-
Transfer the package to the offline nodes.
Now that you have the UCP package in your machine, you can transfer it to the host that you want to manage with UCP. For each host:
$ scp docker-datacenter.tar.gz <user>@<host>:/tmp
-
Login into the hosts where you transferred the images.
-
Load the UCP images.
Once the UCP package is transferred to the hosts, you can use the
docker load
command, to load the images from the tar archive. On each host, run:$ docker load < docker-datacenter.tar.gz
-
Install Docker UCP.
Now that the offline hosts have all the images needed to install UCP, you can install Docker UCP that host.