diff options
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | weed/Makefile | 3 |
2 files changed, 5 insertions, 0 deletions
@@ -520,6 +520,8 @@ cd seaweedfs/weed && make install Once this is done, you will find the executable "weed" in your `$GOPATH/bin` directory +For more installation options, including how to run with Docker, see the [Getting Started guide](https://github.com/seaweedfs/seaweedfs/wiki/Getting-Started). + [Back to TOC](#table-of-contents) ## Disk Related Topics ## diff --git a/weed/Makefile b/weed/Makefile index ac25d008b..38c0d9317 100644 --- a/weed/Makefile +++ b/weed/Makefile @@ -9,6 +9,9 @@ all: install install: go install -ldflags="-s -w" +build_docker: + CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w" + clean: go clean $(SOURCE_DIR) rm -f $(BINARY) |
