Skip to content
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
6 changes: 3 additions & 3 deletions QUICKSTART.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Get ghcr-exporter running in minutes!

### 1. Pull the image
```bash
docker pull ghcr.io/d0ugal/ghcr-exporter:v2.10.5
docker pull ghcr.io/d0ugal/ghcr-exporter:v2.10.6
```

### 2. Create a configuration file
Expand All @@ -24,7 +24,7 @@ docker run -d \
--name ghcr-exporter \
-p 8080:8080 \
-v $(pwd)/config.yaml:/app/config.yaml:ro \
ghcr.io/d0ugal/ghcr-exporter:v2.10.5
ghcr.io/d0ugal/ghcr-exporter:v2.10.6
```

### 4. Verify it's working
Expand Down Expand Up @@ -60,7 +60,7 @@ make build
version: '3.8'
services:
ghcr-exporter:
image: ghcr.io/d0ugal/ghcr-exporter:v2.10.5
image: ghcr.io/d0ugal/ghcr-exporter:v2.10.6
ports:
- "8080:8080"
volumes:
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 @@

A Prometheus exporter for GitHub Container Registry (GHCR) metrics.

**Image**: `ghcr.io/d0ugal/ghcr-exporter:v2.10.5`
**Image**: `ghcr.io/d0ugal/ghcr-exporter:v2.10.6`

## Metrics

Expand Down Expand Up @@ -30,7 +30,7 @@ A Prometheus exporter for GitHub Container Registry (GHCR) metrics.
version: '3.8'
services:
ghcr-exporter:
image: ghcr.io/d0ugal/ghcr-exporter:v2.10.5
image: ghcr.io/d0ugal/ghcr-exporter:v2.10.6
ports:
- "8080:8080"
volumes:
Expand Down Expand Up @@ -85,7 +85,7 @@ packages:
version: '3.8'
services:
ghcr-exporter:
image: ghcr.io/d0ugal/ghcr-exporter:v2.10.5
image: ghcr.io/d0ugal/ghcr-exporter:v2.10.6
ports:
- "8080:8080"
environment:
Expand Down Expand Up @@ -113,7 +113,7 @@ spec:
spec:
containers:
- name: ghcr-exporter
image: ghcr.io/d0ugal/ghcr-exporter:v2.10.5
image: ghcr.io/d0ugal/ghcr-exporter:v2.10.6
ports:
- containerPort: 8080
env:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.env.example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.8'

services:
ghcr-exporter:
image: ghcr.io/d0ugal/ghcr-exporter:v2.10.5
image: ghcr.io/d0ugal/ghcr-exporter:v2.10.6
container_name: ghcr-exporter
ports:
- "8080:8080"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.8'

services:
ghcr-exporter:
image: ghcr.io/d0ugal/ghcr-exporter:v2.10.5
image: ghcr.io/d0ugal/ghcr-exporter:v2.10.6
container_name: ghcr-exporter
ports:
- "8080:8080"
Expand Down
Loading