From 765785fd7fa51245e2e763f945dbbb0a3eb94e2d Mon Sep 17 00:00:00 2001 From: Mark Peek Date: Wed, 26 Jun 2019 14:38:48 -0700 Subject: [PATCH] Reflect change to golang:1.12.5 in the docs Signed-off-by: Mark Peek --- docs/compile_guide.md | 8 ++++---- docs/use_make.md | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/compile_guide.md b/docs/compile_guide.md index 8886777fa..30743b1d1 100644 --- a/docs/compile_guide.md +++ b/docs/compile_guide.md @@ -44,25 +44,25 @@ You can compile the code by one of the three approaches: * Get official Golang image from docker hub: ```sh - $ docker pull golang:1.11.2 + $ docker pull golang:1.12.5 ``` * Build, install and bring up Harbor without Notary: ```sh - $ make install GOBUILDIMAGE=golang:1.11.2 COMPILETAG=compile_golangimage + $ make install GOBUILDIMAGE=golang:1.12.5 COMPILETAG=compile_golangimage ``` * Build, install and bring up Harbor with Notary: ```sh - $ make install GOBUILDIMAGE=golang:1.11.2 COMPILETAG=compile_golangimage NOTARYFLAG=true + $ make install GOBUILDIMAGE=golang:1.12.5 COMPILETAG=compile_golangimage NOTARYFLAG=true ``` * Build, install and bring up Harbor with Clair: ```sh - $ make install GOBUILDIMAGE=golang:1.11.2 COMPILETAG=compile_golangimage CLAIRFLAG=true + $ make install GOBUILDIMAGE=golang:1.12.5 COMPILETAG=compile_golangimage CLAIRFLAG=true ``` #### II. Compile code with your own Golang environment, then build Harbor diff --git a/docs/use_make.md b/docs/use_make.md index c18da1ad6..2d56f6eaa 100644 --- a/docs/use_make.md +++ b/docs/use_make.md @@ -36,10 +36,10 @@ version | set harbor version #### EXAMPLE: #### Build and run harbor from source code. -make install GOBUILDIMAGE=golang:1.11.2 COMPILETAG=compile_golangimage NOTARYFLAG=true +make install GOBUILDIMAGE=golang:1.12.5 COMPILETAG=compile_golangimage NOTARYFLAG=true ### Package offline installer -make package_offline GOBUILDIMAGE=golang:1.11.2 COMPILETAG=compile_golangimage NOTARYFLAG=true +make package_offline GOBUILDIMAGE=golang:1.12.5 COMPILETAG=compile_golangimage NOTARYFLAG=true ### Start harbor with notary make -e NOTARYFLAG=true start