Publish image to Gitea registry
Some checks failed
Build / test (push) Successful in 13s
Build / container (push) Failing after 39s

This commit is contained in:
MrSphay
2026-05-14 17:45:05 +02:00
parent 0e0a21f508
commit f3608568a0
5 changed files with 75 additions and 1 deletions

View File

@@ -44,6 +44,28 @@ GET /api/check?stack=example
## Docker Compose
For Dockge, use the registry-backed compose file from this repository:
```yaml
services:
dockge-image-update-checker:
image: git.wilkensxl.de/mrsphay/dockge-image-update-checker:latest
container_name: dockge-image-update-checker
restart: unless-stopped
ports:
- "8080:8080"
environment:
STACKS_DIR: /opt/stacks
CHECK_INTERVAL_SECONDS: 3600
volumes:
- /opt/stacks:/opt/stacks:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
```
If your Dockge stacks directory is not `/opt/stacks`, change both the host-side volume path and `STACKS_DIR`.
For local development you can still build from source:
```yaml
services:
dockge-image-update-checker: