Add Docker support: Dockerfile, docker-compose.yaml, and README updates

This commit is contained in:
whlaoding
2026-03-13 23:11:46 +08:00
parent 33c357a1de
commit 60195f00a0
3 changed files with 130 additions and 1 deletions

18
docker-compose.yaml Normal file
View File

@@ -0,0 +1,18 @@
services:
laodingbot:
build:
context: .
dockerfile: Dockerfile
image: laodingbot:latest
container_name: laodingbot
restart: unless-stopped
ports:
- "8090:8090"
env_file:
- ./workspace/agent_runtime/configs/env
environment:
MESSAGE_CHANNEL: webui
WEBUI_LISTEN_ADDR: ":8090"
AGENT_WORKSPACE_DIR: /app/workspace/agent_runtime
volumes:
- ./workspace/agent_runtime:/app/workspace/agent_runtime