fix: finalize paths to /memex for LXC/Docker consistency

This commit is contained in:
2026-03-27 18:50:11 -04:00
parent 67e1234ec7
commit 920f5db6f1
2 changed files with 5 additions and 12 deletions

View File

@@ -1,25 +1,18 @@
name: Deploy-Agent-V8-NoCheckout name: Deploy-Agent-V9-Final
on: on:
push: push:
branches: branches:
- main - main
jobs: jobs:
JOB-V8-DIRECT-MOUNT: JOB-V9-MEMEX-PATH:
runs-on: debian-latest runs-on: debian-latest
steps: steps:
- name: Build and Deploy From Host Mount - name: Build and Deploy From LXC Mount
run: | run: |
# VERSION 8 - DIRECT MOUNT # VERSION 9 - Using /memex (LXC Mountpoint)
# We bypass 'actions/checkout' because it requires Node.js inside the runner.
# Instead, we use the /memex folder already mounted from the host.
echo "Syncing latest code from host mount..."
cd /memex/projects/org-agent cd /memex/projects/org-agent
# Since the host is using HTTPS/SSH we can't 'git pull' easily inside the runner,
# but for the binary build, we just need the files.
docker compose -f deploy/docker/docker-compose.yml down docker compose -f deploy/docker/docker-compose.yml down
docker compose -f deploy/docker/docker-compose.yml build --no-cache org-agent docker compose -f deploy/docker/docker-compose.yml build --no-cache org-agent
docker compose -f deploy/docker/docker-compose.yml up -d --force-recreate org-agent docker compose -f deploy/docker/docker-compose.yml up -d --force-recreate org-agent

View File

@@ -11,7 +11,7 @@ services:
- "${ORG_AGENT_DAEMON_PORT:-9105}:${ORG_AGENT_DAEMON_PORT:-9105}" - "${ORG_AGENT_DAEMON_PORT:-9105}:${ORG_AGENT_DAEMON_PORT:-9105}"
- "${ORG_AGENT_WEB_PORT:-8080}:${ORG_AGENT_WEB_PORT:-8080}" - "${ORG_AGENT_WEB_PORT:-8080}:${ORG_AGENT_WEB_PORT:-8080}"
volumes: volumes:
- /barrel/computers/memex:/memex - /memex:/memex
env_file: env_file:
- .env - .env