forked from sourcenetwork/orbis-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (22 loc) · 747 Bytes
/
Makefile
File metadata and controls
30 lines (22 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
ko:
KO_DOCKER_REPO=ko.local ko build -B --platform=linux/$$(go env GOARCH) ./cmd/orbisd
docker:
docker build -t orbisd .
.PHONY: build
build:
go build -tags jwx_es256k -o build/orbisd ./cmd/orbisd
run:
docker-compose -f demo/acp/compose.yaml down -v
docker-compose -f demo/acp/compose.yaml up
run-large:
docker-compose -f demo/acp-large/compose.yaml down -v
docker-compose -f demo/acp-large/compose.yaml up
rund:
docker-compose -f demo/compose.yaml down -v
docker-compose -f demo/compose.yaml up -d
stop:
docker-compose -f demo/compose.yaml down -v
## Don't spin up sourcehub, use the one that's already running on the host.
run-no-sourcehub:
docker-compose -f demo/compose.yaml down -v
docker-compose -f demo/compose.yaml up