• v1.5.0 a9b722fa8d

    jorijn released this 2021-07-10 07:02:07 +00:00 | 51 commits to master since this release

    Added

    • When you buy Bitcoin and supply EXPORT_CSV=/location/to/file.csv, Bitcoin-DCA will export the order information to that file in CSV format.

    Please note that when you do, you need to tell Docker to mount a local file as a volume inside Bitcoin-DCA's container:

    $ touch /location/to/bitcoin-dca/orders.csv # create the file if it does not exists yet
    $ docker run <--usual-argments> -v /location/to/bitcoin-dca/orders.csv:/location/to/bitcoin-dca/orders.csv -e EXPORT_CSV=/location/to/bitcoin-dca/orders.csv buy 25 ... # example 
    

    More information: https://bitcoin-dca.readthedocs.io/en/latest/persistent-storage.html

    How to update

    $ docker image rm ghcr.io/jorijn/bitcoin-dca
    $ docker pull ghcr.io/jorijn/bitcoin-dca:latest
    
    Downloads