lukechilds / docker-bitcoind

Run a full Bitcoin node with one command
MIT License
7 stars 1 forks source link

Build different versions using Docker build arg #2

Closed lukechilds closed 4 years ago

lukechilds commented 4 years ago

So we can do something like:

docker build --build-arg VERSION=0.19.0.1 -t lukechilds/bitcoind:v0.19.0.1 .

to build a specific version.

By default latest version is always built.

We could also use this to add automated testing/publishing using a Travis/GH Actions matrix.