12 lines
207 B
Makefile
12 lines
207 B
Makefile
default: build
|
|
|
|
build: kill
|
|
docker build -t sneak/bitcoind:0.12.0 .
|
|
|
|
run: kill
|
|
docker run --name sneak-bitcoind -d sneak/bitcoind:0.12.0
|
|
docker logs -f sneak-bitcoind
|
|
|
|
kill:
|
|
-docker rm -f sneak-bitcoind
|