- Introduction of dynamic Processors - Introduction of caching system - Introduction of a better template manager - Adaptation of ModelVariables to support dynamic Processors / Retrievers / Specialists - Start adaptation of chat client
182 lines
5.2 KiB
YAML
182 lines
5.2 KiB
YAML
# Comments are provided throughout this file to help you get started.
|
|
# If you need more help, visit the Docker Compose reference guide at
|
|
# https://docs.docker.com/go/compose-spec-reference/
|
|
|
|
# Here the instructions define your application as a service called "server".
|
|
# This service is built from the Dockerfile in the current directory.
|
|
# You can add other services your application may depend on here, such as a
|
|
# database or a cache. For examples, see the Awesome Compose repository:
|
|
# https://github.com/docker/awesome-compose
|
|
|
|
x-common-variables: &common-variables
|
|
DB_HOST: bswnz4.stackhero-network.com
|
|
DB_USER: luke_skywalker
|
|
DB_PASS: '2MK&1rHmWEydE2rFuJLq*ls%tdkPAk2'
|
|
DB_NAME: eveai
|
|
DB_PORT: '5945'
|
|
FLASK_ENV: production
|
|
FLASK_DEBUG: false
|
|
SECRET_KEY: '38wg8e1lvhlvcu0apr95n8o07axf244lzaa7b7djh7itrf8jnyyh1lkuco529w'
|
|
SECURITY_PASSWORD_SALT: '166448071751628781809462050022558634074'
|
|
MAIL_USERNAME: 'evie_admin@askeveai.com'
|
|
MAIL_PASSWORD: 's5D%R#y^v!s&6Z^i0k&'
|
|
MAIL_SERVER: mail.askeveai.com
|
|
MAIL_PORT: '465'
|
|
REDIS_USER: eveai
|
|
REDIS_PASS: 'jHliZwGD36sONgbm0fc6SOpzLbknqq4RNF8K'
|
|
REDIS_URL: 8bciqc.stackhero-network.com
|
|
REDIS_PORT: '9961'
|
|
FLOWER_USER: 'Felucia'
|
|
FLOWER_PASSWORD: 'Jungles'
|
|
OPENAI_API_KEY: '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'
|
|
GROQ_API_KEY: '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'
|
|
ANTHROPIC_API_KEY: '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'
|
|
JWT_SECRET_KEY: '0d99e810e686ea567ef305d8e9b06195c4db482952e19276590a726cde60a408'
|
|
API_ENCRYPTION_KEY: 'Ly5XYWwEKiasfAwEqdEMdwR-k0vhrq6QPYd4whEROB0='
|
|
GRAYLOG_HOST: de4zvu.stackhero-network.com
|
|
GRAYLOG_PORT: '12201'
|
|
MINIO_ENDPOINT: 'fxwnyl.stackhero-network.com:443'
|
|
MINIO_ACCESS_KEY: 04JKmQln8PQpyTmMiCPc
|
|
MINIO_SECRET_KEY: 2PEZAD1nlpAmOyDV0TUTuJTQw1qVuYLF3A7GMs0D
|
|
NGINX_SERVER_NAME: 'evie.askeveai.com mxz536.stackhero-network.com'
|
|
LANGCHAIN_API_KEY: "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"
|
|
|
|
networks:
|
|
eveai-network:
|
|
driver: bridge
|
|
|
|
services:
|
|
nginx:
|
|
platform: linux/amd64
|
|
image: josakola/nginx:latest
|
|
ports:
|
|
- 80:80
|
|
- 8080:8080
|
|
environment:
|
|
<<: *common-variables
|
|
volumes:
|
|
- eveai_logs:/var/log/nginx
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.nginx.rule=Host(`evie.askeveai.com`) || Host(`mxz536.stackhero-network.com`)"
|
|
- "traefik.http.routers.nginx.entrypoints=web,websecure"
|
|
- "traefik.http.routers.nginx.tls.certresolver=letsencrypt"
|
|
- "traefik.http.services.nginx.loadbalancer.server.port=80"
|
|
depends_on:
|
|
- eveai_app
|
|
- eveai_chat
|
|
networks:
|
|
- eveai-network
|
|
|
|
eveai_app:
|
|
platform: linux/amd64
|
|
image: josakola/eveai_app:latest
|
|
ports:
|
|
- 5001:5001
|
|
environment:
|
|
<<: *common-variables
|
|
COMPONENT_NAME: eveai_app
|
|
volumes:
|
|
- eveai_logs:/app/logs
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:5001/healthz/ready"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
networks:
|
|
- eveai-network
|
|
|
|
eveai_workers:
|
|
platform: linux/amd64
|
|
image: josakola/eveai_workers:latest
|
|
environment:
|
|
<<: *common-variables
|
|
COMPONENT_NAME: eveai_workers
|
|
volumes:
|
|
- eveai_logs:/app/logs
|
|
networks:
|
|
- eveai-network
|
|
|
|
eveai_chat:
|
|
platform: linux/amd64
|
|
image: josakola/eveai_chat:latest
|
|
ports:
|
|
- 5002:5002
|
|
environment:
|
|
<<: *common-variables
|
|
COMPONENT_NAME: eveai_chat
|
|
volumes:
|
|
- eveai_logs:/app/logs
|
|
healthcheck:
|
|
test: [ "CMD", "curl", "-f", "http://localhost:5002/healthz/ready" ] # Adjust based on your health endpoint
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
networks:
|
|
- eveai-network
|
|
|
|
eveai_chat_workers:
|
|
platform: linux/amd64
|
|
image: josakola/eveai_chat_workers:latest
|
|
environment:
|
|
<<: *common-variables
|
|
COMPONENT_NAME: eveai_chat_workers
|
|
volumes:
|
|
- eveai_logs:/app/logs
|
|
networks:
|
|
- eveai-network
|
|
|
|
eveai_api:
|
|
platform: linux/amd64
|
|
image: josakola/eveai_api:latest
|
|
ports:
|
|
- 5003:5003
|
|
environment:
|
|
<<: *common-variables
|
|
COMPONENT_NAME: eveai_api
|
|
volumes:
|
|
- eveai_logs:/app/logs
|
|
healthcheck:
|
|
test: [ "CMD", "curl", "-f", "http://localhost:5003/healthz/ready" ]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
networks:
|
|
- eveai-network
|
|
|
|
eveai_beat:
|
|
platform: linux/amd64
|
|
image: josakola/eveai_beat:latest
|
|
environment:
|
|
<<: *common-variables
|
|
COMPONENT_NAME: eveai_beat
|
|
volumes:
|
|
- eveai_logs:/app/logs
|
|
networks:
|
|
- eveai-network
|
|
|
|
eveai_entitlements:
|
|
platform: linux/amd64
|
|
image: josakola/eveai_entitlements:latest
|
|
environment:
|
|
<<: *common-variables
|
|
COMPONENT_NAME: eveai_entitlements
|
|
volumes:
|
|
- eveai_logs:/app/logs
|
|
networks:
|
|
- eveai-network
|
|
|
|
flower:
|
|
image: josakola/flower:latest
|
|
environment:
|
|
<<: *common-variables
|
|
ports:
|
|
- "5555:5555"
|
|
networks:
|
|
- eveai-network
|
|
|
|
volumes:
|
|
eveai_logs:
|
|
|
|
|