Skip to content
This repository has been archived by the owner on Jun 8, 2023. It is now read-only.

🐞 BugFix: Get docker running #146

Merged
merged 4 commits into from
Sep 21, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions docker/Dockerfile.MoniGoMani
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
FROM freqtradeorg/freqtrade:develop
# Install specific Freqtrade commit for the current MoniGoMani 'development' branch
FROM hoanghnbk/freqtrade_3503fdb4
# FROM freqtradeorg/freqtrade:develop

# Switch user to root if you must install something from apt
# Don't forget to switch the user back below!
USER root

# Install jq, a JSON Parser used by MGM
RUN apt-get install -y jq

# Create an empty log file if non existing
RUN mkdir -p ./user_data/logs/
RUN touch -m ./user_data/logs/freqtrade.log

# Copy ./.hurry file as required file on MGM Strategy
COPY ./.hurry .

# Create an empty directory for downloaded StaticPairLists
RUN mkdir -p ./user_data/mgm_pair_lists/

# Switch back to the normal Freqtrade User
USER ftuser
USER ftuser