chore: initial import
This commit is contained in:
22
docker-compose.yml
Normal file
22
docker-compose.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
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
|
||||
Reference in New Issue
Block a user