simplified ** docker setup and run

This commit is contained in:
Michael Hohn
2025-08-04 12:17:10 -07:00
committed by =Michael Hohn
parent f579b21b78
commit 224f35bef2

View File

@@ -96,9 +96,6 @@
cd /Users/hohn/work-gh/mrva/mrvaserver
go build
# Check for running containers
docker ps --format "table {{.ID}}\t{{.Image}}\t{{.Names}}"
# Copy the new binary
cd /Users/hohn/work-gh/mrva/mrvaserver
docker cp mrvaserver mrva-server:/usr/local/bin/mrvaserver
@@ -111,9 +108,6 @@
cd /Users/hohn/work-gh/mrva/mrvaagent
go build
# Look for the agent's name in the process table
docker ps --format "table {{.ID}}\t{{.Image}}\t{{.Names}}"
# Copy the new binary
cd /Users/hohn/work-gh/mrva/mrvaagent
docker cp mrvaagent mrva-agent:/usr/local/bin/mrvaagent
@@ -128,13 +122,9 @@
go mod tidy
GOOS=linux GOARCH=arm64 go build
# Look for the gh-mrva name in the process table
docker ps --format "table {{.ID}}\t{{.Image}}\t{{.Names}}"
# Copy the new binary
cd /Users/hohn/work-gh/mrva/gh-mrva
docker cp gh-mrva mrva-ghmrva:/usr/local/bin/gh-mrva
#+END_SRC
** set up traffic tracing