Skip to content

Commit a408b59

Browse files
committed
updated the .github/docker-image.yml file
1 parent dc96e07 commit a408b59

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

.github/workflows/docker-image.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,12 @@ jobs:
5050
tags: ${{ github.repository_owner }}/${{ steps.string.outputs.lowercase }}:rstudiodev
5151
cache-from: type=registry,ref=${{ github.repository_owner }}/${{ steps.string.outputs.lowercase }}:buildcache
5252
cache-to: type=registry,ref=${{ github.repository_owner }}/${{ steps.string.outputs.lowercase }}:buildcache,mode=max
53+
54+
- name: Update Docker Hub Description
55+
uses: peter-evans/dockerhub-description@v4
56+
with:
57+
username: ${{ github.repository_owner }}
58+
password: ${{ secrets.DOCKER_PASSWORD }}
59+
repository: ${{ github.repository_owner }}/${{ steps.string.outputs.lowercase }}
60+
short-description: ${{ github.event.repository.description }}
61+
readme-filepath: ./README.md

README.md

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,7 @@
1212
The ClusterR package consists of Gaussian mixture models, k-means, mini-batch-kmeans, k-medoids and affinity propagation clustering algorithms with the option to plot, validate, predict (new data) and find the optimal number of clusters. The package takes advantage of 'RcppArmadillo' to speed up the computationally intensive parts of the functions. More details on the functionality of ClusterR can be found in the blog-posts ([first](http://mlampros.github.io/2016/09/12/clusterR_package/) and [second](http://mlampros.github.io/2022/12/04/comparison_partition_around_medoid/)), Vignette and in the package Documentation ( *scroll down for information on how to use the* **docker image** )
1313
<br><br>
1414

15-
**UPDATE 16-08-2018**
16-
17-
18-
As of version 1.1.4 the *ClusterR* package allows R package maintainers to perform **linking between packages at a C++ code (Rcpp) level**. This means that the Rcpp functions of the *ClusterR* package can be called in the C++ files of another package. In the next lines I'll give detailed explanations on how this can be done:
19-
20-
<br>
15+
***UPDATE 16-08-2018***: As of version 1.1.4 the *ClusterR* package allows R package maintainers to perform **linking between packages at a C++ code (Rcpp) level**. This means that the Rcpp functions of the *ClusterR* package can be called in the C++ files of another package. In the next lines I'll give detailed explanations on how this can be done:
2116

2217
Assumming that an R package ('PackageA') calls one of the *ClusterR* Rcpp functions. Then the maintainer of 'PackageA' has to :
2318

@@ -157,13 +152,8 @@ Use the following link to report bugs/issues,
157152
<br>
158153

159154

160-
**UPDATE 28-11-2019**
155+
***UPDATE 28-11-2019***: **Docker images** of the *ClusterR* package are available to download from my [dockerhub](https://hub.docker.com/r/mlampros/clusterr) account. The images come with *Rstudio* and the *R-development* version (latest) installed. The whole process was tested on Ubuntu 18.04. To **pull** & **run** the image do the following,
161156

162-
<br>
163-
164-
**Docker images** of the *ClusterR* package are available to download from my [dockerhub](https://hub.docker.com/r/mlampros/clusterr) account. The images come with *Rstudio* and the *R-development* version (latest) installed. The whole process was tested on Ubuntu 18.04. To **pull** & **run** the image do the following,
165-
166-
<br>
167157

168158
```R
169159

0 commit comments

Comments
 (0)