Skip to content

Commit

Permalink
Bump to Version 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
cniweb committed Aug 6, 2022
1 parent 5b02a61 commit 65d899b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
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.2/SRBMiner-Multi-1-0-2-Linux.tar.xz && \
tar xf SRBMiner-Multi-1-0-2-Linux.tar.xz && rm -rf /opt/SRBMiner-Multi-1-0-2-Linux.tar.xz && \
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 && \
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-2/
RUN chmod +x /opt/SRBMiner-Multi-1-0-2/start_zergpool.sh
WORKDIR "/opt/SRBMiner-Multi-1-0-2"
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"
ENTRYPOINT ["./start_zergpool.sh"]
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
version="1.0.2"
version="1.0.3"
image="srbminer-multi"
docker build . --tag docker.io/cniweb/$image:$version
docker tag docker.io/cniweb/$image:$version docker.io/cniweb/$image:latest
Expand Down

0 comments on commit 65d899b

Please sign in to comment.