-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
FROM debian:stable-slim | ||
RUN apt-get update && apt-get -y install wget xz-utils && \ | ||
cd /opt && wget https://github.com/doktor83/SRBMiner-Multi/releases/download/1.0.3/SRBMiner-Multi-1-0-3-Linux.tar.xz && \ | ||
tar xf SRBMiner-Multi-1-0-3-Linux.tar.xz && rm -rf /opt/SRBMiner-Multi-1-0-3-Linux.tar.xz && \ | ||
cd /opt && wget https://github.com/doktor83/SRBMiner-Multi/releases/download/1.0.4/SRBMiner-Multi-1-0-4-Linux.tar.xz && \ | ||
tar xf SRBMiner-Multi-1-0-4-Linux.tar.xz && rm -rf /opt/SRBMiner-Multi-1-0-4-Linux.tar.xz && \ | ||
apt-get -y purge xz-utils && apt-get -y autoremove --purge && apt-get -y clean && apt-get -y autoclean; rm -rf /var/lib/apt-get/lists/* | ||
ENV ALGO="minotaurx" | ||
ENV POOL_ADDRESS="stratum+tcp://minotaurx.na.mine.zergpool.com:7019" | ||
ENV WALLET_USER="LNec6RpZxX6Q1EJYkKjUPBTohM7Ux6uMUy" | ||
ENV PASSWORD="c=LTC,ID=docker" | ||
ENV EXTRAS="--api-enable --api-port 80 --disable-gpu --cpu-threads 4" | ||
EXPOSE 80 | ||
COPY start_zergpool.sh /opt/SRBMiner-Multi-1-0-3/ | ||
RUN chmod +x /opt/SRBMiner-Multi-1-0-3/start_zergpool.sh | ||
WORKDIR "/opt/SRBMiner-Multi-1-0-3" | ||
COPY start_zergpool.sh /opt/SRBMiner-Multi-1-0-4/ | ||
RUN chmod +x /opt/SRBMiner-Multi-1-0-4/start_zergpool.sh | ||
WORKDIR "/opt/SRBMiner-Multi-1-0-4" | ||
ENTRYPOINT ["./start_zergpool.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters