Adding HERMES container
This commit is contained in:
@@ -48,6 +48,19 @@ services:
|
|||||||
command: ["python3", "/scripts/pull-agent-identity.py"]
|
command: ["python3", "/scripts/pull-agent-identity.py"]
|
||||||
restart: "no"
|
restart: "no"
|
||||||
|
|
||||||
|
hermes-init:
|
||||||
|
image: python:3.12-alpine
|
||||||
|
volumes:
|
||||||
|
- ./agents/hermes:/a0/usr
|
||||||
|
- ./scripts:/scripts:ro
|
||||||
|
environment:
|
||||||
|
AGENT_ID: ${HERMES_AGENT_ID:-}
|
||||||
|
AGENT_TYPE: agent0
|
||||||
|
CONTENT_API_URL: ${API_URL}
|
||||||
|
CONTENT_API_KEY: ${CONTENT_API_KEY}
|
||||||
|
command: ["python3", "/scripts/pull-agent-identity.py"]
|
||||||
|
restart: "no"
|
||||||
|
|
||||||
rind-init:
|
rind-init:
|
||||||
image: python:3.12-alpine
|
image: python:3.12-alpine
|
||||||
volumes:
|
volumes:
|
||||||
@@ -165,6 +178,23 @@ services:
|
|||||||
AUTH_PASSWORD: ${AUTH_PASSWORD}
|
AUTH_PASSWORD: ${AUTH_PASSWORD}
|
||||||
extra_hosts:
|
extra_hosts:
|
||||||
- "host.docker.internal:host-gateway"
|
- "host.docker.internal:host-gateway"
|
||||||
|
hermes:
|
||||||
|
image: agent0ai/agent-zero:latest
|
||||||
|
container_name: herms
|
||||||
|
ports:
|
||||||
|
- "50003:80"
|
||||||
|
volumes:
|
||||||
|
- ./agents/hermes:/a0/usr
|
||||||
|
- ${HOME}/.ssh:/root/.ssh
|
||||||
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
hermes-init:
|
||||||
|
condition: service_completed_successfully
|
||||||
|
environment:
|
||||||
|
AUTH_LOGIN: ${AUTH_LOGIN}
|
||||||
|
AUTH_PASSWORD: ${AUTH_PASSWORD}
|
||||||
|
extra_hosts:
|
||||||
|
- "host.docker.internal:host-gateway"
|
||||||
|
|
||||||
# ── Hermes agent ───────────────────────────────────────────────────────────
|
# ── Hermes agent ───────────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user