initial commit

This commit is contained in:
2016-04-11 05:38:48 +02:00
commit 9a29fdeffd
5 changed files with 96 additions and 0 deletions

11
Makefile Normal file
View File

@@ -0,0 +1,11 @@
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