| 123456789101112131415161718192021222324252627282930313233 |
- services:
- feishu:
- build:
- context: .
- dockerfile: docker/Dockerfile.feishu
- image: agent/feishu:latest
- container_name: agent-feishu
- restart: unless-stopped
- volumes:
- - ./gateway/core/channels/feishu/openclaw-lark/src/http/config.yml:/app/config.yml
- env_file:
- - .env
- environment:
- - FEISHU_HTTP_PORT=4380
- - GATEWAY_FEISHU_WEBHOOK_URL=http://localhost:8000/api/channels/feishu/openclaw/webhook
- networks:
- - agent
- gateway:
- build:
- context: .
- dockerfile: docker/Dockerfile.gateway
- image: agent/gateway:latest
- container_name: agent-gateway
- restart: unless-stopped
- env_file:
- - .env
- networks:
- - agent
- networks:
- agent:
- name: agent
|