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

Commit

Permalink
🔀 Merge PR hhqwerty/fix/get-docker-running
Browse files Browse the repository at this point in the history
🐞 BugFix: Get docker running
  • Loading branch information
Rikj000 authored Sep 21, 2021
2 parents 50675e4 + 7fca53d commit a5c6c3b
Showing 1 changed file with 7 additions and 5 deletions.
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

0 comments on commit a5c6c3b

Please sign in to comment.