From 680bab84683c16f5c5775f0f8007a7e36dc328b0 Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Thu, 12 Oct 2017 15:02:37 +0100 Subject: [PATCH] Update docs with go 1.9 requirement. re: #1632 The comment about plugins in README.md didn't seem relevant any longer so I removed it. Signed-off-by: Ian Campbell --- BUILDING.md | 2 +- README.md | 2 +- docs/getting-started.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index adce76c4f..221c0254c 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -9,7 +9,7 @@ In first you need to setup your Go development environment. You can follow this guideline [How to write go code](https://golang.org/doc/code.html) and at the end you need to have `GOPATH` and `GOROOT` set in your environment. -Current containerd requires Go 1.8.x or above. +Current containerd requires Go 1.9.x or above. At this point you can use `go` to checkout `containerd` in your `GOPATH`: diff --git a/README.md b/README.md index 9484ad092..46df58e76 100644 --- a/README.md +++ b/README.md @@ -154,7 +154,7 @@ err := task.Start(context) To build the daemon and `ctr` simple test client, the following build system dependencies are required: -* Go 1.8.x or above (requires 1.8 due to use of golang plugin(s)) +* Go 1.9.x or above * Protoc 3.x compiler and headers (download at the [Google protobuf releases page](https://github.com/google/protobuf/releases)) * Btrfs headers and libraries for your distribution. Note that building the btrfs driver can be disabled via build tag removing this dependency. diff --git a/docs/getting-started.md b/docs/getting-started.md index c80ef1237..cc8b54bb1 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -7,7 +7,7 @@ However, if you want to integrate containerd into your project we have an easy t In this guide we will pull and run a redis server with containerd using the client package. We will assume that you are running a modern linux host for this example with a compatible build of `runc`. Please refer to [RUNC.md](/RUNC.md) for the currently supported version of `runc`. -This project requires Go 1.8.x or above. +This project requires Go 1.9.x or above. If you need to install Go or update your currently installed one, please refer to Go install page at https://golang.org/doc/install. ## Starting containerd