This is a pilot project — running it via docker compose locally is enough for now. Deploy/CI can come back once the project is greenlit for real use. Also fixes claude invocation: add --strict-mcp-config (verified against the actual installed claude-code CLI --help) so only agent-news' own MCP server is loaded, not whatever else might be discoverable in the environment. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
13 lines
213 B
YAML
13 lines
213 B
YAML
services:
|
|
agent-news:
|
|
build:
|
|
context: .
|
|
dockerfile: runner/Dockerfile
|
|
env_file: .env
|
|
volumes:
|
|
- claude-home:/home/agent/.claude
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
claude-home:
|