Skip to content

v0.0.83

Compare
Choose a tag to compare
@github-actions github-actions released this 22 Oct 14:05

What's Changed

  • Fixed Redis/TradingView docker images for Raspberry Pi - #366

Full Changelog: v0.0.82...v0.0.83

Attention to Raspberry Pi traders

If you are having an issue with the previous broken image, please follow the below steps to fix it.

  1. Check docker version

    $ docker -v
    Docker version 20.10.9, build c2ea9bc
    

    1-1. If the docker version is not 20.10.9, upgrade the system and reboot

     ```
     $ sudo apt-get update
     $ sudo apt-get upgrade
     $ sudo reboot
     ```
    

    1-2. Check docker version

     ```
     $ docker -v
     Docker version 20.10.9, build c2ea9bc
     ```
    
  2. Pull the latest code

    $ git pull
    
  3. Pull latest docker images

    $ docker-compose -f docker-compose.rpi.yml pull
    
  4. Up docker images

    $ docker-compose -f docker-compose.rpi.yml up -d
    
  5. Access to Redis and flush

    $ docker exec -it binance-redis 
    > AUTH <redis password>
    OK
    > FLUSHALL
    OK 
    
    • Redis password can be found in docker-compose.rpi.yml
  6. Restart binance bot

    $ docker restart binance-bot
    
  7. Access frontend to check all working.