Files
sales-bot-stacks/nocodb/compose.yaml
consultoria-as 5d9cbd4812 Commit inicial: Sales Bot - Sistema de Automatización de Ventas
- Stack completo con Mattermost, NocoDB y Sales Bot
- Procesamiento OCR de tickets con Tesseract
- Sistema de comisiones por tubos de tinte
- Comandos slash /metas y /ranking
- Documentación completa del proyecto

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-18 02:41:53 +00:00

48 lines
1.1 KiB
YAML

version: "3.8"
services:
postgres:
image: postgres:15-alpine
container_name: nocodb-db
restart: unless-stopped
environment:
POSTGRES_USER: consultoria-as
POSTGRES_PASSWORD: Aasi940812
POSTGRES_DB: nocodb
volumes:
- postgres_data:/var/lib/postgresql/data
networks:
- nocodb-network
healthcheck:
test: ["CMD-SHELL", "pg_isready -U consultoria-as -d nocodb"]
interval: 10s
timeout: 5s
retries: 5
nocodb:
image: nocodb/nocodb:latest
container_name: nocodb
restart: unless-stopped
depends_on:
postgres:
condition: service_healthy
environment:
NC_DB: pg://postgres:5432?u=consultoria-as&p=Aasi940812&d=nocodb
NC_AUTH_JWT_SECRET: tu-secreto-jwt-seguro-cambiar-esto
NC_ADMIN_EMAIL: ialcarazsalazar@consultoria-as.com
NC_ADMIN_PASSWORD: Aasi940812
volumes:
- nocodb_data:/usr/app/data
ports:
- "8080:8080"
networks:
- nocodb-network
volumes:
postgres_data:
nocodb_data:
networks:
nocodb-network:
driver: bridge