Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update repo description disabled. #8

Merged
merged 1 commit into from
Mar 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,15 @@ jobs:
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}

- name: Update repo description
uses: peter-evans/dockerhub-description@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: mslipets/my-bloody-sonar
short-description: 'Self Configured SonarQube Docker image based on Official SonarSource Images'
# Disabled due to https://github.com/docker/hub-feedback/issues/1927
# untill resolution to https://github.com/docker/roadmap/issues/115 implemented.
# - name: Update repo description
# uses: christian-korneck/update-container-description-action@v1
# env:
# DOCKER_USER: ${{ secrets.DOCKERHUB_USERNAME }}
# DOCKER_PASS: ${{ secrets.DOCKERHUB_TOKEN }}
# with:
# destination_container_repo: mslipets/my-bloody-sonar
# provider: dockerhub
# short_description: 'Self Configured SonarQube Docker image based on Official SonarSource Images'
# readme_file: 'README.md'
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ I thought these epithets is also pretty suitable for this custom SonarQube image

## Demo and Usage Example

A [demo](demo) can be found [here](demo/README.md)
A [demo](https://github.com/mslipets/my-bloody-sonar/demo) can be found [here](https://github.com/mslipets/my-bloody-sonar/demo/README.md)


## Releases
Expand All @@ -50,21 +50,21 @@ get the [LTS](https://hub.docker.com/_/sonarqube/?tab=tags&page=1&ordering=last_
```bash
docker pull mslipets/my-bloody-sonar:lts
```
get the [latest](https://hub.docker.com/_/sonarqube/?tab=tags&page=1&ordering=last_updated) [community](https://hub.docker.com/_/sonarqube/?tab=tags&page=1&ordering=last_updated) version (alpine) alternative tags: [8.6.1-community, community](https://hub.docker.com/_/sonarqube/?tab=tags&page=1&ordering=last_updated)
get the [latest](https://hub.docker.com/_/sonarqube/?tab=tags&page=1&ordering=last_updated) [community](https://hub.docker.com/_/sonarqube/?tab=tags&page=1&ordering=last_updated) version (alpine) alternative tags: [8.7.0-community, community](https://hub.docker.com/_/sonarqube/?tab=tags&page=1&ordering=last_updated)
```bash
docker pull mslipets/my-bloody-sonar:latest
```
get the latest [developer](https://hub.docker.com/_/sonarqube/?tab=tags&page=1&ordering=last_updated) version (alpine) alternative tags: [8.6.1-developer, developer](https://hub.docker.com/_/sonarqube/?tab=tags&page=1&ordering=last_updated)
get the latest [developer](https://hub.docker.com/_/sonarqube/?tab=tags&page=1&ordering=last_updated) version (alpine) alternative tags: [8.7.0-developer, developer](https://hub.docker.com/_/sonarqube/?tab=tags&page=1&ordering=last_updated)
```bash
docker pull mslipets/my-bloody-sonar:developer
```
get the latest [enterprise](https://hub.docker.com/_/sonarqube/?tab=tags&page=1&ordering=last_updated) version (alpine) alternative tags: [8.6.1-enterprise, enterprise](https://hub.docker.com/_/sonarqube/?tab=tags&page=1&ordering=last_updated)
get the latest [enterprise](https://hub.docker.com/_/sonarqube/?tab=tags&page=1&ordering=last_updated) version (alpine) alternative tags: [8.7.0-enterprise, enterprise](https://hub.docker.com/_/sonarqube/?tab=tags&page=1&ordering=last_updated)
```bash
docker pull mslipets/my-bloody-sonar:enterprise
```
get a concrete 8.6.1-developer release
get a concrete 8.7.0-developer release
```bash
docker pull mslipets/my-bloody-sonar:8.6.1-developer
docker pull mslipets/my-bloody-sonar:8.7.0-developer

```

Expand Down