Installing Docker UCP

We need to set a few environment variables, as follows:

$ export UCP_IP=<IP address>$ export UCP_FQDN=<FQDN>$ export UCP_VERSION=3.0.0-beta2

Here <IP address> and <FQDN> are the public IP address and the public DNS name of the AWS EC2 instance we're installing in UCP.

After that, we can use the following command to download all the images that UCP needs:

$ docker run --rm docker/ucp:${UCP_VERSION} images --list \    | xargs -L 1 docker pull

Finally, we can install UCP:

Installing UCP 3.0.0-beta2 on a VM in AWS

Now we can open a browser window and navigate to https://<IP address>. Log in with your username, admin, and password,  ...

Get Learn Docker - Fundamentals of Docker 18.x now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.