discollama/compose.yaml

22 lines
415 B
YAML
Raw Normal View History

2023-10-09 16:59:22 -07:00
version: '3'
services:
discollama:
build:
context: .
dockerfile: Dockerfile
restart: always
command: ['--redis-host', 'redis']
environment:
- DISCORD_TOKEN
- OLLAMA_HOST=host.docker.internal
- OLLAMA_PORT=11434
- OLLAMA_MODEL=discollama
redis:
2023-10-14 13:25:31 -07:00
image: redis/redis-stack-server:latest
2023-10-27 12:40:28 -07:00
restart: always
2023-10-14 13:25:31 -07:00
volumes:
- /data
2023-10-09 16:59:22 -07:00
ports:
- 6379