Default dockerfile to "freqtrade trade"

This commit is contained in:
Matthias 2019-09-29 19:48:37 +02:00
parent 344a0a094f
commit 52ff391c8a
1 changed files with 2 additions and 0 deletions

View File

@ -24,3 +24,5 @@ RUN pip install numpy --no-cache-dir \
COPY . /freqtrade/
RUN pip install -e . --no-cache-dir
ENTRYPOINT ["freqtrade"]
# Default to trade mode
CMD [ "trade" ]