Skip to content
This repository has been archived by the owner on May 20, 2023. It is now read-only.

Commit

Permalink
Merge pull request #95 from buggregator/feature/last-unstable-release
Browse files Browse the repository at this point in the history
Add tag 'beta' for docker builds with for pre releases
  • Loading branch information
butschster committed Jul 30, 2022
2 parents 196b3ac + 4bdbde4 commit 5e70f97
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-image-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ jobs:
build-args:
APP_VERSION=${{ steps.previoustag.outputs.tag }}
tags:
${{ secrets.DOCKER_HUB_USERNAME }}/buggregator:${{ steps.previoustag.outputs.tag }}
${{ secrets.DOCKER_HUB_USERNAME }}/buggregator:beta, ${{ secrets.DOCKER_HUB_USERNAME }}/buggregator:${{ steps.previoustag.outputs.tag }}
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,19 +298,26 @@ You can run Buggregator via docker from [Docker Hub](https://hub.docker.com/repo

Just run one of bash command

**Latest version**
**Latest stable release**

```bash
docker run --pull always -p 23517:8000 -p 1025:1025 -p 9912:9912 -p 9913:9913 butschster/buggregator:latest
```

**Latest beta release**
```bash
docker run --pull always -p 23517:8000 -p 1025:1025 -p 9912:9912 -p 9913:9913 butschster/buggregator:beta
```

You can omit `--pull always` argument if your docker-compose doesn't support it.

**Specific version**

```bash
docker run -p 23517:8000 -p 1025:1025 -p 9912:9912 -p 9913:9913 butschster/buggregator:v1.18
```

**You can omit unused ports if you use, for example, only var-dumper**
**You can omit unused ports if you use, for example, only `var-dumper`**
```bash
docker run --pull always -p 9912:9912 butschster/buggregator:latest
```
Expand Down

0 comments on commit 5e70f97

Please sign in to comment.