From 6b045637be7e0885bf1e4ed5d2c36fd7408b48b3 Mon Sep 17 00:00:00 2001 From: Max Mayfield Date: Mon, 2 Mar 2026 13:31:11 +0000 Subject: [PATCH] Switch registry to reg.dd0c.net (HTTPS on 443) --- products/build-push.sh | 4 ++-- products/docker-compose.yml | 10 +++++----- products/watch-loop.sh | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/products/build-push.sh b/products/build-push.sh index 0291b15..c3e3ce9 100755 --- a/products/build-push.sh +++ b/products/build-push.sh @@ -1,7 +1,7 @@ #!/bin/bash # dd0c CI Build & Push to Local Registry -# Builds Docker images for all Node services and pushes to 192.168.86.11:30095 +# Builds Docker images for all Node services and pushes to reg.dd0c.net # # Usage: # ./build-push.sh # Build all services @@ -9,7 +9,7 @@ set -euo pipefail -REGISTRY="${REGISTRY:-192.168.86.11:30095}" +REGISTRY="${REGISTRY:-reg.dd0c.net}" RED='\033[0;31m' GREEN='\033[0;32m' YELLOW='\033[1;33m' diff --git a/products/docker-compose.yml b/products/docker-compose.yml index 71b4389..d97bcee 100644 --- a/products/docker-compose.yml +++ b/products/docker-compose.yml @@ -106,7 +106,7 @@ services: # P2: IaC Drift Detection (SaaS) drift: - image: 192.168.86.11:30095/dd0c-drift:latest + image: reg.dd0c.net/dd0c-drift:latest build: context: ./02-iac-drift-detection/saas dockerfile: Dockerfile @@ -125,7 +125,7 @@ services: # P3: Alert Intelligence alert: - image: 192.168.86.11:30095/dd0c-alert:latest + image: reg.dd0c.net/dd0c-alert:latest build: context: ./03-alert-intelligence dockerfile: Dockerfile @@ -144,7 +144,7 @@ services: # P4: Lightweight IDP / Service Catalog portal: - image: 192.168.86.11:30095/dd0c-portal:latest + image: reg.dd0c.net/dd0c-portal:latest build: context: ./04-lightweight-idp dockerfile: Dockerfile @@ -165,7 +165,7 @@ services: # P5: AWS Cost Anomaly Detection cost: - image: 192.168.86.11:30095/dd0c-cost:latest + image: reg.dd0c.net/dd0c-cost:latest build: context: ./05-aws-cost-anomaly dockerfile: Dockerfile @@ -185,7 +185,7 @@ services: # P6: Runbook Automation (SaaS) run: - image: 192.168.86.11:30095/dd0c-run:latest + image: reg.dd0c.net/dd0c-run:latest build: context: ./06-runbook-automation/saas dockerfile: Dockerfile diff --git a/products/watch-loop.sh b/products/watch-loop.sh index a0b16ef..7ef183f 100755 --- a/products/watch-loop.sh +++ b/products/watch-loop.sh @@ -9,7 +9,7 @@ set -euo pipefail SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" cd "$SCRIPT_DIR" -REGISTRY="${REGISTRY:-192.168.86.11:30095}" +REGISTRY="${REGISTRY:-reg.dd0c.net}" LOCK="/tmp/dd0c-watch.lock" # Prevent concurrent runs