Skip to content

Commit

Permalink
Bump to version 2.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
cniweb committed Mar 28, 2023
1 parent 87f30a9 commit 4576bb7
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/2.1.0/SRBMiner-Multi-2-1-0-Linux.tar.xz && \
tar xf SRBMiner-Multi-2-1-0-Linux.tar.xz && rm -rf /opt/SRBMiner-Multi-2-1-0-Linux.tar.xz && \
cd /opt && wget https://github.com/doktor83/SRBMiner-Multi/releases/download/2.2.3/SRBMiner-Multi-2-2-3-Linux.tar.xz && \
tar xf SRBMiner-Multi-2-2-3-Linux.tar.xz && rm -rf /opt/SRBMiner-Multi-2-2-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 --disable-auto-affinity --cpu-threads 4"
EXPOSE 80
COPY start_zergpool.sh /opt/SRBMiner-Multi-2-1-0/
RUN chmod +x /opt/SRBMiner-Multi-2-1-0/start_zergpool.sh
WORKDIR "/opt/SRBMiner-Multi-2-1-0"
COPY start_zergpool.sh /opt/SRBMiner-Multi-2-2-3/
RUN chmod +x /opt/SRBMiner-Multi-2-2-3/start_zergpool.sh
WORKDIR "/opt/SRBMiner-Multi-2-2-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="2.1.0"
version="2.2.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 4576bb7

Please sign in to comment.