Initial version of the Hermes self learning agent setup of JR IT Services.

This commit is contained in:
2026-04-21 11:53:29 +02:00
commit 7f9b0e6c5f
31 changed files with 1966 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
# Example only.
# Use this as a pattern if you want OpenClaw managed in a separate repo or compose project.
# The important part is the same separation model as Hermes:
# - localhost-bound host ports
# - own state directory
# - own private network
# - optional shared network
# - external br0-backed uplink network for LAN/Internet
services:
openclaw:
image: ghcr.io/example/openclaw:latest
container_name: openclaw
restart: unless-stopped
ports:
- "127.0.0.1:18080:8080"
environment:
TZ: Europe/Berlin
volumes:
- ./state/openclaw:/app/data
security_opt:
- no-new-privileges:true
mem_limit: 4g
cpus: 2.0
networks:
- openclaw_private
- agents_shared
- br0_uplink
networks:
openclaw_private:
name: openclaw_private
driver: bridge
agents_shared:
name: alan_agents_shared
external: true
br0_uplink:
name: br0_lan
external: true