Skip to content

Commit

Permalink
Improve make target names
Browse files Browse the repository at this point in the history
  • Loading branch information
maurolacy committed Oct 18, 2024
1 parent 859acff commit 6da0bb6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ build-docker:
$(shell git rev-parse --show-toplevel)

# A local bcd image with users and funds for testing / development / integration purposes
build-local:
build-local-bcd:
$(DOCKER) build --tag babylonlabs-io/local-bcd -f contrib/images/local-bcd/Dockerfile .

run-local: build-local stop-local
run-bcd: build-local-bcd stop-bcd
$(DOCKER) run --name local-bcd babylonlabs-io/local-bcd

stop-local:
stop-bcd:
$(DOCKER) stop local-bcd || true
$(DOCKER) container rm -f local-bcd || true

Expand Down

0 comments on commit 6da0bb6

Please sign in to comment.