You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
o Run the function locally on the host with no containerization (Go only).
53
53
$ func run --container=false
54
54
55
+
o Run the function locally on a specific address.
56
+
$ func run --address=0.0.0.0:8081
57
+
55
58
56
59
```
57
60
func run
@@ -60,6 +63,7 @@ func run
60
63
### Options
61
64
62
65
```
66
+
--address string Interface and port on which to bind and listen. Default is 127.0.0.1:8080, or an available port if 8080 is not available. ($FUNC_ADDRESS)
63
67
--build string[="true"] Build the function. [auto|true|false]. ($FUNC_BUILD) (default "auto")
64
68
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". (default "pack")
65
69
--builder-image string Specify a custom builder image for use by the builder other than its default. ($FUNC_BUILDER_IMAGE)
0 commit comments