Switch to Brian's registry at 192.168.86.11:30095, add CI build+push+deploy jobs
- All services pull from 192.168.86.11:30095 instead of localhost:5000 - Removed self-hosted registry container (Brian runs his own) - CI workflows: test → build → push to registry → deploy - build-push.sh and watch-loop.sh updated with new registry address
This commit is contained in:
@@ -47,14 +47,6 @@ services:
|
||||
volumes:
|
||||
- meili_data:/meili_data
|
||||
|
||||
# --- Local Docker Registry ---
|
||||
registry:
|
||||
image: registry:2
|
||||
ports:
|
||||
- "5000:5000"
|
||||
volumes:
|
||||
- registry_data:/var/lib/registry
|
||||
restart: unless-stopped
|
||||
|
||||
# --- dd0c Products ---
|
||||
# P1: LLM Cost Router (Rust — API server)
|
||||
@@ -114,7 +106,7 @@ services:
|
||||
|
||||
# P2: IaC Drift Detection (SaaS)
|
||||
drift:
|
||||
image: localhost:5000/dd0c-drift:latest
|
||||
image: 192.168.86.11:30095/dd0c-drift:latest
|
||||
build:
|
||||
context: ./02-iac-drift-detection/saas
|
||||
dockerfile: Dockerfile
|
||||
@@ -133,7 +125,7 @@ services:
|
||||
|
||||
# P3: Alert Intelligence
|
||||
alert:
|
||||
image: localhost:5000/dd0c-alert:latest
|
||||
image: 192.168.86.11:30095/dd0c-alert:latest
|
||||
build:
|
||||
context: ./03-alert-intelligence
|
||||
dockerfile: Dockerfile
|
||||
@@ -152,7 +144,7 @@ services:
|
||||
|
||||
# P4: Lightweight IDP / Service Catalog
|
||||
portal:
|
||||
image: localhost:5000/dd0c-portal:latest
|
||||
image: 192.168.86.11:30095/dd0c-portal:latest
|
||||
build:
|
||||
context: ./04-lightweight-idp
|
||||
dockerfile: Dockerfile
|
||||
@@ -173,7 +165,7 @@ services:
|
||||
|
||||
# P5: AWS Cost Anomaly Detection
|
||||
cost:
|
||||
image: localhost:5000/dd0c-cost:latest
|
||||
image: 192.168.86.11:30095/dd0c-cost:latest
|
||||
build:
|
||||
context: ./05-aws-cost-anomaly
|
||||
dockerfile: Dockerfile
|
||||
@@ -193,7 +185,7 @@ services:
|
||||
|
||||
# P6: Runbook Automation (SaaS)
|
||||
run:
|
||||
image: localhost:5000/dd0c-run:latest
|
||||
image: 192.168.86.11:30095/dd0c-run:latest
|
||||
build:
|
||||
context: ./06-runbook-automation/saas
|
||||
dockerfile: Dockerfile
|
||||
@@ -213,4 +205,3 @@ services:
|
||||
volumes:
|
||||
pg_data:
|
||||
meili_data:
|
||||
registry_data:
|
||||
|
||||
Reference in New Issue
Block a user