From 0581dae7f734aeb9461098e50e7ea48ba5e0ddbd Mon Sep 17 00:00:00 2001 From: "Jose J. Escobar" <53836904+jescobar-docker@users.noreply.github.com> Date: Wed, 2 Oct 2019 07:36:48 -0400 Subject: [PATCH] Update offline-install.md (#9547) Fixed filenames. Fixed an incorrect number (two > three). I tested this with the proposed names and it works. --- ee/ucp/interlock/deploy/offline-install.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ee/ucp/interlock/deploy/offline-install.md b/ee/ucp/interlock/deploy/offline-install.md index c9b9d49b5e..d2678d14b1 100644 --- a/ee/ucp/interlock/deploy/offline-install.md +++ b/ee/ucp/interlock/deploy/offline-install.md @@ -12,25 +12,25 @@ First, using an existing Docker engine, save the images: ```bash $> docker save {{ page.ucp_org }}/ucp-interlock:{{ page.ucp_version }} > interlock.tar $> docker save {{ page.ucp_org }}/ucp-interlock-extension:{{ page.ucp_version }} > interlock-extension-nginx.tar -$> docker save {{ page.ucp_org }}/ucp-interlock-proxy:{{ page.ucp_version }} > nginx.tar +$> docker save {{ page.ucp_org }}/ucp-interlock-proxy:{{ page.ucp_version }} > interlock-proxy-nginx.tar ``` Note: replace `{{ page.ucp_org }}/ucp-interlock-extension:{{ page.ucp_version }}` and `{{ page.ucp_org }}/ucp-interlock-proxy:{{ page.ucp_version }}` with the corresponding extension and proxy image if you are not using Nginx. -You should have the following two files: +You should have the following three files: - `interlock.tar`: This is the core Interlock application. - `interlock-extension-nginx.tar`: This is the Interlock extension for Nginx. -- `nginx:alpine`: This is the official Nginx image based on Alpine. +- `interlock-proxy-nginx.tar`: This is the official Nginx image based on Alpine. Copy these files to each node in the Docker Swarm cluster and run the following commands to load each image: ```bash $> docker load < interlock.tar $> docker load < interlock-extension-nginx.tar -$> docker load < nginx:alpine.tar +$> docker load < interlock-proxy-nginx.tar ``` ## Next steps