From fb0b8dda1bdf03ee3bf44e336d385944031e3a9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20H=C3=A4ussler?= Date: Sat, 6 Aug 2022 16:21:11 +0200 Subject: [PATCH] Bump to Version 1.0.4 --- Dockerfile | 10 +++++----- build.sh | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index f15abfa..de6c43e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ 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" @@ -9,7 +9,7 @@ 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"] \ No newline at end of file diff --git a/build.sh b/build.sh index d1fb051..7a984f3 100755 --- a/build.sh +++ b/build.sh @@ -1,5 +1,5 @@ #!/bin/bash -version="1.0.3" +version="1.0.4" image="srbminer-multi" docker build . --tag docker.io/cniweb/$image:$version docker tag docker.io/cniweb/$image:$version docker.io/cniweb/$image:latest