forked from stove-labs/granary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
21 lines (16 loc) · 803 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
ARGS = $(filter-out $@,$(MAKECMDGOALS))
$(eval $(ARGS):;@:)
build:
docker image build -t maht0rz/tezos-environment-manager-sandbox-node -f ./docker/images/sandbox-node/Dockerfile . && \
docker image build -t maht0rz/tezos-environment-manager-tezos-client-liquidity -f ./docker/images/tezos-client-liquidity/Dockerfile .
docker image build -t maht0rz/tezos-environment-manager-tzscan -f ./docker/images/tzscan/Dockerfile .
publish-docker-images:
docker push maht0rz/tezos-environment-manager-sandbox-node
docker push maht0rz/tezos-environment-manager-tezos-client-liquidity
docker push maht0rz/tezos-environment-manager-tzscan
start:
sh ./scripts/$(NETWORK_TYPE)/commands.sh start
stop:
sh ./scripts/$(NETWORK_TYPE)/commands.sh stop
client:
sh ./scripts/$(NETWORK_TYPE)/commands.sh client