Skip to content

Commit e5a188b

Browse files
committedMay 4, 2017
Add insecure flag to dbstop
1 parent 9f1135e commit e5a188b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎Makefile

+4-2
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,12 @@ default help:
3939
@echo " dbstart Start a cockroachdb server. See also 'dbstop'."
4040
@echo " dbstop Stop the running cockroachdb server."
4141
@echo " gettools Download and install Go-based build toolchain (uses go-get)."
42-
@echo " $(BINNAME) Build a development version of the server. Runs dependent rules."
42+
@echo " $(BINNAME) Build a development version of the server. Runs dependent rules."
4343
@echo " proto Generate the protocol buffer implementation files."
4444
@echo " release Build production release(s). Runs dependent rules."
4545
@echo " run Run development version of the server with the race detector."
46+
@echo " docker Build local docker image and tag it with the version."
47+
@echo " dockerpush Push the local docker image to Docker Hub."
4648
@echo " test Execute all development tests."
4749
@echo " vet Perform static error checks against the source.\n"
4850

@@ -132,7 +134,7 @@ dbstart:
132134

133135
.PHONY: dbstop
134136
dbstop:
135-
${COCKROACH} quit
137+
${COCKROACH} quit --insecure
136138

137139
.PHONY: dbsetup
138140
dbsetup:

0 commit comments

Comments
 (0)
Please sign in to comment.