4cab047432
- control-plane default listen addr is now :3452 (was :8080). An unusual port to avoid collisions on the VM. - agent-micro and agent-gateway default SDP_CP_URL points at ws://localhost:3452/ws/agent. docker-compose.yml updates the control plane command, host port mapping, and agent -cp URLs. - nginx/nginx.conf (the legacy root-mount reference) uses 127.0.0.1:3452 for the upstream. nginx/sandbox.conf is the new deployment config: four location blocks for the /sandbox/credit-card mount — _next/static serves cached chunks, /api/ and /ws/ proxy to 127.0.0.1:3452, /sandbox/credit-card serves the static dashboard with try_files for SPA routing. - scripts/patch-nginx.sh: deleted. The user configures nginx on 186 by hand. scripts/deploy.sh no longer calls it. - AGENTS.md: new file. Documents the build/lint/test commands (with the golang:1.24-alpine container — local Go can't fetch the toolchain), the wire protocol, the Slice-2 conventions (sdp-<repo> container naming, snapshot persistence, PreGitReset/AfterStart hooks), the repo-path gotcha, and the build-artifacts-in-git rationale. - dashboard/out: now tracked in git, alongside bin/. The dashboard static export is scp'd to 186 on deploy; the VMs have no internet so they can't regenerate it. .gitignore comment explains this and warns against re-ignoring. - README.md / REQUIREMENTS.md: status updated to 'Slice 2 done', per-feature checklist marked. Erangel repo path corrected to /var/www/html/erangel-ocean (was wrongly ~/SDP in earlier docs).
63 lines
1.8 KiB
YAML
63 lines
1.8 KiB
YAML
# docker-compose.yml — runs control-plane, agent-micro, agent-gateway
|
|
# inside alpine:latest containers. The agents need the host docker socket
|
|
# bind-mounted so they can manage service containers.
|
|
#
|
|
# Use on a single host (e.g. 186) for dev. In production, the agents
|
|
# live on their own VMs and the control plane lives on 186.
|
|
|
|
services:
|
|
control-plane:
|
|
image: alpine:latest
|
|
container_name: sdp-control-plane
|
|
restart: unless-stopped
|
|
command: ["/SDP/bin/control-plane", "-addr", ":3452", "-data", "/SDP/data"]
|
|
volumes:
|
|
- ./bin/control-plane:/SDP/bin/control-plane:ro
|
|
- sdp-data:/SDP/data
|
|
ports:
|
|
- "3452:3452"
|
|
|
|
agent-micro:
|
|
image: alpine:latest
|
|
container_name: sdp-agent-micro
|
|
restart: unless-stopped
|
|
# agent connects to the control plane by container name on the compose
|
|
# network. Override SDP_CP_URL when running outside compose.
|
|
command:
|
|
- /SDP/bin/agent-micro
|
|
- -node
|
|
- micro
|
|
- -cp
|
|
- ws://control-plane:3452/ws/agent
|
|
volumes:
|
|
- ./bin/agent-micro:/SDP/bin/agent-micro:ro
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
# Repos live on the host. Adjust to the actual paths.
|
|
- ~/AppGolang:/AppGolang:ro
|
|
environment:
|
|
- DOCKER_HOST=unix:///var/run/docker.sock
|
|
depends_on:
|
|
- control-plane
|
|
|
|
agent-gateway:
|
|
image: alpine:latest
|
|
container_name: sdp-agent-gateway
|
|
restart: unless-stopped
|
|
command:
|
|
- /SDP/bin/agent-gateway
|
|
- -node
|
|
- gateway
|
|
- -cp
|
|
- ws://control-plane:3452/ws/agent
|
|
volumes:
|
|
- ./bin/agent-gateway:/SDP/bin/agent-gateway:ro
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- ~/SDP/repos:/SDP-repos:ro
|
|
environment:
|
|
- DOCKER_HOST=unix:///var/run/docker.sock
|
|
depends_on:
|
|
- control-plane
|
|
|
|
volumes:
|
|
sdp-data:
|