Fix getbalance() bug
[novacoin.git] / contrib / docker_builder / README.md
1 # Dockerfile for building novacoin binaries.
2
3 Now, you can build your own novacoin files on all systems with docker and do it easy without installing depends on your system.
4
5 ## How:
6
7 ### Build docker image
8
9 ```
10 sudo docker build .
11 ```
12
13 ### Run docker container
14
15 Builder will return HASH of image
16 Example:
17 Successfully built 9bbff825d50f
18
19 ```
20 sudo docker run -it -v ~/path/to/novacoin/folder:/novacoin 9bbff825d50f
21 ```
22
23 If your system uses SELINUX you may use --privileged=true key
24
25 ```
26 sudo docker run --privileged=true -it -v ~/development/novacoin:/novacoin 9bbff825d50f
27 ```
28
29 See novacoin-qt file in used novacoin folder and novacoind file in src subfolder.