23 lines
383 B
YAML
23 lines
383 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
adhdbot:
|
|
build: .
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./memory:/app/memory
|
|
ports:
|
|
- "8000:8000"
|
|
restart: unless-stopped
|
|
agentic_worker:
|
|
build: .
|
|
command: ["python", "agentic_worker.py"]
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./memory:/app/memory
|
|
restart: unless-stopped
|
|
depends_on:
|
|
- adhdbot
|