From 9c17dd84d58395024f43c9c4facf93e9b475a3f6 Mon Sep 17 00:00:00 2001 From: Derek Smith Date: Wed, 22 Mar 2023 16:34:06 -0400 Subject: [PATCH] Fix FQDN bug in DOCKER_HOST env. --- www/go.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/go.sh b/www/go.sh index f980664..ebf8278 100755 --- a/www/go.sh +++ b/www/go.sh @@ -4,7 +4,7 @@ set -eu cd "$(dirname "$0")" # redirect all docker commands to the remote host. -DOCKER_HOST="ssh://ubuntu@$PRIMARY_WWW_FQDN" +DOCKER_HOST="ssh://ubuntu@$WWW_FQDN" export DOCKER_HOST="$DOCKER_HOST" # prepare clams images and such