Add user_data to backtesting

This commit is contained in:
Matthias 2020-09-20 15:38:53 +02:00
parent b02c0904b6
commit 8ff1429e68

View File

@ -22,7 +22,8 @@ RUN pip install numpy --no-cache-dir \
# Install and execute
COPY . /freqtrade/
RUN pip install -e . --no-cache-dir
RUN pip install -e . --no-cache-dir \
&& mkdir /freqtrade/user_data/
ENTRYPOINT ["freqtrade"]
# Default to trade mode
CMD [ "trade" ]