docker-bitcoind/Makefile

12 lines
207 B
Makefile
Raw Normal View History

2016-04-11 03:38:48 +00:00
default: build
build: kill
2016-04-11 14:13:18 +00:00
docker build -t sneak/bitcoind:0.12.0 .
2016-04-11 03:38:48 +00:00
run: kill
2016-04-11 14:13:18 +00:00
docker run --name sneak-bitcoind -d sneak/bitcoind:0.12.0
2016-04-11 03:38:48 +00:00
docker logs -f sneak-bitcoind
kill:
-docker rm -f sneak-bitcoind