feat: Agente-Marketing initial commit
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
services:
|
||||
casahunter:
|
||||
build: .
|
||||
container_name: casahunter
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "127.0.0.1:5050:5000"
|
||||
environment:
|
||||
- DATABASE_URL=${DATABASE_URL:-mysql+pymysql://casahunter:CHANGE_ME@mariadb:3306/casahunter}
|
||||
- SECRET_KEY=${SECRET_KEY:?SECRET_KEY must be set in .env}
|
||||
- OLLAMA_URL=http://host.docker.internal:11434
|
||||
- OLLAMA_MODEL=qwen2.5:14b
|
||||
- ANTHROPIC_KEY=
|
||||
extra_hosts:
|
||||
- "host.docker.internal:host-gateway"
|
||||
logging:
|
||||
driver: local
|
||||
options:
|
||||
max-size: "10m"
|
||||
max-file: "3"
|
||||
networks:
|
||||
- web
|
||||
- mariadb_default
|
||||
|
||||
networks:
|
||||
web:
|
||||
external: true
|
||||
mariadb_default:
|
||||
external: true
|
||||
Reference in New Issue
Block a user