From 041a40b026abf536cf19c35e114b04595752f8d7 Mon Sep 17 00:00:00 2001 From: zhaozhiming Date: Sat, 12 Nov 2022 09:35:20 +0800 Subject: [PATCH 1/2] docs: fix offline install docs some error --- docs/install/offline.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/install/offline.md b/docs/install/offline.md index 2ab040c0cbfa0..2a1b192938be3 100644 --- a/docs/install/offline.md +++ b/docs/install/offline.md @@ -51,7 +51,7 @@ RUN mkdir -p /opt/terraform/plugins ADD filesystem-mirror-example.tfrc /opt/terraform/config.tfrc # Optionally, we can "seed" the filesystem mirror with common providers. -# Coder and Docker. Comment out lines 37-47 if you plan on only using a +# Coder and Docker. Comment out lines 40-49 if you plan on only using a # volume or network mirror: RUN mkdir -p /opt/terraform/plugins/registry.terraform.io WORKDIR /opt/terraform/plugins/registry.terraform.io @@ -70,7 +70,7 @@ WORKDIR /home/coder # Option 2) Use a network mirror. # https://developer.hashicorp.com/terraform/cli/config/config-file#network_mirror -# Be sure uncomment line 56 and edit network-mirror-example.tfrc to +# Be sure uncomment line 60 and edit network-mirror-example.tfrc to # specify the HTTPS base URL of your mirror. # ADD network-mirror-example.tfrc /opt/terraform/config.tfrc @@ -122,7 +122,7 @@ services: coder: image: registry.example.com/coder:latest volumes: - - ./plugins:/opt/registry.terraform.io + - ./plugins:/opt/terraform/plugins # ... database: image: registry.example.com/postgres:13 From 37fe4ceaf2b6b157d1bd3098bd72119a3ff96be0 Mon Sep 17 00:00:00 2001 From: zhaozhiming Date: Sat, 12 Nov 2022 02:38:52 +0000 Subject: [PATCH 2/2] retrigger checks