chore: use mirrored registry for logging stack images (refs #86)
Some checks failed
Deploy to Staging / Build Images (pull_request) Successful in 30s
Deploy to Staging / Deploy to Staging (pull_request) Failing after 11s
Deploy to Staging / Verify Staging (pull_request) Has been skipped
Deploy to Staging / Notify Staging Ready (pull_request) Has been skipped
Deploy to Staging / Notify Staging Failure (pull_request) Successful in 7s

- Update Loki, Promtail, Grafana to use REGISTRY_MIRRORS
- Add grafana/loki, grafana/promtail, grafana/grafana to mirror script

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Eric Gullickson
2026-02-04 20:19:22 -06:00
parent 1cf54fb254
commit e83385d729
2 changed files with 6 additions and 3 deletions

View File

@@ -266,7 +266,7 @@ services:
# Log Aggregation - Loki
mvp-loki:
image: grafana/loki:2.9.0
image: ${REGISTRY_MIRRORS:-git.motovaultpro.com/egullickson/mirrors}/loki:2.9.0
container_name: mvp-loki
restart: unless-stopped
volumes:
@@ -288,7 +288,7 @@ services:
# Log Aggregation - Promtail
mvp-promtail:
image: grafana/promtail:2.9.0
image: ${REGISTRY_MIRRORS:-git.motovaultpro.com/egullickson/mirrors}/promtail:2.9.0
container_name: mvp-promtail
restart: unless-stopped
volumes:
@@ -308,7 +308,7 @@ services:
# Log Aggregation - Grafana
mvp-grafana:
image: grafana/grafana:10.0.0
image: ${REGISTRY_MIRRORS:-git.motovaultpro.com/egullickson/mirrors}/grafana:10.0.0
container_name: mvp-grafana
restart: unless-stopped
environment:

View File

@@ -17,6 +17,9 @@ IMAGES=(
"python:3.11-slim"
"docker:24.0"
"docker:24.0-dind"
"grafana/loki:2.9.0"
"grafana/promtail:2.9.0"
"grafana/grafana:10.0.0"
)
echo "========================================"