All Projects → varnav → binance-node-docker

varnav / binance-node-docker

Licence: MIT license
Docker image for Binance full and light nodes

Programming Languages

Dockerfile
14818 projects

Projects that are alternatives of or similar to binance-node-docker

binance-chain-kit-ios
Full Binance DEX iOS library (SDK), implemented on Swift.
Stars: ✭ 15 (-37.5%)
Mutual labels:  binance, binance-dex, binance-chain
unicorn-binance-websocket-api
An unofficial Python API to use the Binance Websocket API`s (com+testnet, com-margin+testnet, com-isolated_margin+testnet, com-futures+testnet, com-coin_futures, us, tr, jex, dex/chain+testnet) in a easy, fast, flexible, robust and fully-featured way.
Stars: ✭ 588 (+2350%)
Mutual labels:  binance, binance-dex, binance-chain
info-bot
🤖 A Versatile Telegram Bot
Stars: ✭ 37 (+54.17%)
Mutual labels:  cryptocurrencies, cryptocoins
Cryptex
Gemini, GDAX, Bitfinex, Poloniex, Binance, Kraken, Cryptopia, Koinex, BitGrail and CoinMarketCap cryptocurrency exchange API clients in Swift / iOS SDK. Check prices and account balances using Sample iOS app.
Stars: ✭ 51 (+112.5%)
Mutual labels:  cryptocurrencies, binance
Vue Crypto Dashboard
Cryptocurrency Dashboard made with Vue
Stars: ✭ 107 (+345.83%)
Mutual labels:  cryptocurrencies, binance
tradingconv
Convert trading history of cryptocurrency platforms
Stars: ✭ 24 (+0%)
Mutual labels:  cryptocurrencies, binance
coinaly
🚀 Fast and easy to use mobile trade interface for cryptocurrencies. Track your trades to the moon and beyond. Currently only for Bittrex.
Stars: ✭ 32 (+33.33%)
Mutual labels:  cryptocurrencies, cryptocoins
Crypto vba
An Excel/VBA project to communicate with various cryptocurrency exchanges APIs
Stars: ✭ 103 (+329.17%)
Mutual labels:  cryptocurrencies, binance
Benzaiboten-spot-trading-bot
A trading bot easy to use to be linked to your favorite exchange to automatize the trading on cryptocurrencies
Stars: ✭ 20 (-16.67%)
Mutual labels:  cryptocurrencies, binance
Docker Images
Official source for Docker configurations, images, and examples of Dockerfiles for Oracle products and projects
Stars: ✭ 5,120 (+21233.33%)
Mutual labels:  dockerfiles, docker-images
Dockerfiles
Optimized media, analytics and graphics software stack images. Use the dockerfile(s) in your project or as a recipe book for bare metal installation.
Stars: ✭ 98 (+308.33%)
Mutual labels:  dockerfiles, docker-images
binance-downloader
Python tool to download Binance Candlestick (k-line) data from REST API
Stars: ✭ 44 (+83.33%)
Mutual labels:  cryptocurrencies, binance
dockerfiles
Repository for my public Docker images.
Stars: ✭ 22 (-8.33%)
Mutual labels:  dockerfiles, docker-images
twitter-crypto-bot
This is a Twitter bot that tweets about cryptocurrencies prices every certain amount of minutes
Stars: ✭ 21 (-12.5%)
Mutual labels:  cryptocurrencies, binance
pyjuque
⚡ Open Source Algorithmic Trading Bot for Python.
Stars: ✭ 318 (+1225%)
Mutual labels:  cryptocurrencies, binance
CoinTaxman
Calculate your taxes from cryptocurrency gains
Stars: ✭ 110 (+358.33%)
Mutual labels:  cryptocurrencies, binance
Crypto Whale Watcher
An app to keep a watch on big volume trades of cryptocurrecies on different exchanges by sending alerts via a Telegram Bot.
Stars: ✭ 60 (+150%)
Mutual labels:  cryptocurrencies, binance
dockerfiles
A collection of Dockerfiles
Stars: ✭ 103 (+329.17%)
Mutual labels:  dockerfiles, docker-images
backtrading-python-binance
Backtesting several trading strategy and rank them according their profit return.
Stars: ✭ 108 (+350%)
Mutual labels:  cryptocurrencies, binance
coinwatch
Coinmarketcap console client to keep track of your crypto currency trades - are you winning or losing?
Stars: ✭ 73 (+204.17%)
Mutual labels:  cryptocurrencies, cryptocoins

binance-node-docker

Test status Docker Pulls MIT license

Binance full node docs
Binance full node repo

Docker image for Binance Full Node

Features:

  • Spin up full Binance node with single command.
  • Small image about 100MB, compared to bigger than 6 GB official repository.
  • Easy updates

Don't know what all this is about? Read newbie guide.

Run interactively

docker run --rm -it --ulimit nofile=16000:16000 varnav/binance-node

Run as daemon

ufw allow 27146/tcp
docker run -d --name binance-node -p 27146:27146 -p 27147:27147 -p 26660:26660 --restart unless-stopped --security-opt no-new-privileges --ulimit nofile=16000:16000 varnav/binance-node

Check logs

docker logs -f binance-node

CLI access

docker exec -it binance-node /bin/bash
bnbcli version

Update

docker stop binance-node && docker rm binance-node, pull fresh image with docker pull varnav/binance-node and then run again, data and configs in the volume binance-data are preserved.

Run with kubernetes

kubectl apply -f .\kubernetes-deployment.yml
kubectl expose deployment binance-node --type LoadBalancer

Notes

Initial seed data

It will be faster to download data snapshot from here to speed up initial sync.

Devel

Building locally

git clone https://github.com/varnav/binance-node-docker.git
cd binance-node-docker && docker build . -t varnav/binance-node

Test run

docker run --rm -it varnav/binance-node

Run and get access to CLI

docker run --rm -d --name binance-node varnav/binance-node
docker exec -it binance-node /bin/bash
bnbcli version
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].