-
Notifications
You must be signed in to change notification settings - Fork 8
/
Makefile
24 lines (19 loc) · 1.05 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
contributors-build-image:
docker build -t stovelabs/granary-contributors ./docker/contributors
contributors-push-image:
docker push stovelabs/granary-contributors
contributors-shell:
# 3000 for the docs server and 35729 for it's the live-reload
docker run -it -p 3000:3000 -p 35729:35729 -v $(PWD):$(PWD):delegated -w $(PWD) stovelabs/granary-contributors /bin/bash
contributors-shell-no-ports:
docker run -it -v $(PWD):$(PWD):delegated -w $(PWD) stovelabs/granary-contributors /bin/bash
contributors-build-user-images:
# node
docker build -t stovelabs/granary-tezos-node-sandboxnet ./docker/tezos-node/sandboxnet
# client
docker build -t stovelabs/granary-tezos-client-sandboxnet -f ./docker/tezos-client/sandboxnet/Dockerfile ./docker/tezos-client
docker build -t stovelabs/granary-tezos-client-alphanet -f ./docker/tezos-client/alphanet/Dockerfile ./docker/tezos-client
contributors-push-user-images:
docker push stovelabs/granary-tezos-node-sandboxnet
docker push stovelabs/granary-tezos-client-sandboxnet
docker push stovelabs/granary-tezos-client-alphanet