We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a85283 commit ecd479aCopy full SHA for ecd479a
Makefile
@@ -16,7 +16,7 @@
16
#
17
default: help
18
19
-VERSION ?= 0.0.0
+VERSION ?= 0.1.0
20
GITSHA ?= $(shell git rev-parse --short=7 HEAD)
21
OSNAME ?= $(shell uname -s | tr A-Z a-z)
22
OSARCH ?= $(shell uname -m | tr A-Z a-z)
docs/install.md
@@ -50,10 +50,20 @@ kubectl apply -k /path/to/apisix-ingress-controller/samples/deploy
50
51
// todo
52
53
-## Master branch builds
+## Manual build
54
+
55
+* Build binary
56
57
+```shell
58
+$ cd /path/to/apisix-ingress-controller/
59
+$ make build
60
+```
61
62
63
+* Build with Docker
64
65
```shell
-docker build -t apache/ingress-controller:v0.1.0 ../.
66
+$ docker build -t apache/ingress-controller:v0.1.0 ../.
67
```
68
69
## Next
0 commit comments