stable/LOCAL.md
Ashton Honnecke cb6e136893 how to exec
2019-09-23 13:35:18 -06:00

1.2 KiB

Local development

The fastest and easiest way to start up is to use docker-compose.develop which gives developers the ability to start the bot up with all the required dependencies, without needing to install any freqtrade specific dependencies on your local machine.

Install

git

sudo apt install git

docker

sudo apt install docker

docker-compose

sudo apt install docker-compose

Starting the bot

Develop dockerfile

rm docker-compose.yml && mv docker-compose.develop.yml docker-compose.yml

Docker Compose

Starting

docker-compose up

Docker compose up

Rebuilding

docker-compose build

Execing (effectively SSH into the container)

The exec command requires that the container already be running, if you want to start it that can be effected by docker-compose up or docker-compose run freqtrade_develop

docker-compose exec freqtrade_develop /bin/bash

image