Skip to content

Commit

Permalink
updated gminer to v3.44
Browse files Browse the repository at this point in the history
  • Loading branch information
thelolagemann committed Mar 27, 2024
1 parent ecf604f commit e26c0c4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG UBUNTU_VERSION=20.04

FROM alpine:latest as builder
RUN apk add curl tar xz
ARG GMINER_VERSION=3.43
ARG GMINER_VERSION=3.44
RUN echo https://github.com/develsoftware/GMinerRelease/releases/download/${GMINER_VERSION}/gminer_${GMINER_VERSION/./_}_linux64.tar.xz
RUN curl -L "https://github.com/develsoftware/GMinerRelease/releases/download/${GMINER_VERSION}/gminer_${GMINER_VERSION/./_}_linux64.tar.xz" > gminer.tar.gz
RUN mkdir /gminer && tar -xf gminer.tar.gz -C /gminer
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![Docker Image Size (latest by date)](https://img.shields.io/docker/image-size/thelolagemann/gminer?style=flat-square)
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/thelolagemann/docker-gminer/main.yml)
![Gminer version](https://img.shields.io/badge/gminer-v3.43-blue?style=flat-square)
![Gminer version](https://img.shields.io/badge/gminer-v3.44-blue?style=flat-square)

A docker container for quickly getting up and running with gminer.

Expand Down Expand Up @@ -115,17 +115,17 @@ build arguments you can pass during build.

| Argument | Description | Default |
|------------------|----------------------------------------------------------|----------|
| `GMINER_VERSION` | The version of gminer to build the container with. | `3.43` |
| `GMINER_VERSION` | The version of gminer to build the container with. | `3.44` |
| `CUDA_BASE` | The version of CUDA to build the container with. | `11.6.1` |
| `UBUNTU_VERSION` | Ubuntu OS base container version.<sup>[1](#ubuntu)</sup> | `20.04` |

<sup><a name="ubuntu">1</a>: Check NVIDIA's [dockerhub](https://hub.docker.com/r/nvidia/cuda/tags?page=1&name=-runtime-ubuntu)
to correctly match up the CUDA and Ubuntu versions.</sup>

For example, to build a container with cuda version 11.6.1 and gminer 3.43, run the command
For example, to build a container with cuda version 11.6.1 and gminer 3.44, run the command

```shell
docker build --build-arg GMINER_VERSION=3.43 --build-arg CUDA_BASE=11.6.1 .
docker build --build-arg GMINER_VERSION=3.44 --build-arg CUDA_BASE=11.6.1 .
```

## License
Expand Down

0 comments on commit e26c0c4

Please sign in to comment.