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