Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/steeply/gbot-trader
Trading robot for trade on crypto exchanges
https://github.com/steeply/gbot-trader
bitcoin bitfinex bittrex exchange exmo poloniex telegram trader
Last synced: about 3 hours ago
JSON representation
Trading robot for trade on crypto exchanges
- Host: GitHub
- URL: https://github.com/steeply/gbot-trader
- Owner: steeply
- License: other
- Created: 2017-04-16T07:01:30.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-05-14T16:19:30.000Z (6 months ago)
- Last Synced: 2024-05-15T14:24:39.855Z (6 months ago)
- Topics: bitcoin, bitfinex, bittrex, exchange, exmo, poloniex, telegram, trader
- Language: Dockerfile
- Homepage:
- Size: 546 MB
- Stars: 264
- Watchers: 53
- Forks: 109
- Open Issues: 4
-
Metadata Files:
- Readme: README-docker.md
- License: LICENSE
Awesome Lists containing this project
README
Docker readme
=============# Dependences
Please install docker and docker compose first:
- Docker
```bash
curl -sSL https://get.docker.com/ | sh
```- docker-compose:
Broswe to https://github.com/docker/compose/releases and find latest release install instructions, it will be something like:
```bash
curl -L https://github.com/docker/compose/releases/download/1.17.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
```# Insallation
Then simply build docker image (git pull gbot, cd /to/the/downloaded/path):```
docker-compose build --pull
```Edit .env file:
```
cp .env-sample .env
vim .env
```# Start
```
docker-compose up -d gbot_trader
docker-compose logs -f gbot_trader
```Now service is up and running, please return to the main README.
# Upgrade
When new version of gbot_trader would be released, do:
```
cd /path/to/the/gbot_trader
git pull && \
docker-compose build --pull && \
docker-compose stop gbot_trader && \
docker-compose rm -f gbot_trader && \
docker-compuse logs -f gbot_trader
```