college-bot-v2/docker-compose.yml
nexy7574 4a42918dee
All checks were successful
Build and Publish college-bot-v2 / build_and_publish (push) Successful in 12s
Make redis actually persistent
2024-06-04 02:11:51 +01:00

34 lines
818 B
YAML

services:
jimmy:
container_name: jimmy-v2
image: git.i-am.nexus/nex/college-bot:latest
restart: unless-stopped
tty: true
volumes:
- ./config.toml:/app/config.toml:ro
- ./jimmy.log:/app/jimmy.log
- /dev/dri:/dev/dri
- jimmy-data:/app/data
extra_hosts:
- host.docker.internal:host-gateway
depends_on:
- redis # you can remove this if you remove the ollama and starboard cogs.
ollama:
image: ollama/ollama:latest
container_name: ollama
restart: unless-stopped
ports:
- 11434:11434
volumes:
- ollama-data:/root/.ollama
redis:
image: redis
restart: unless-stopped
command: redis-server --save 60 1 --loglevel warning
volumes:
- redis-data:/data
volumes:
ollama-data:
jimmy-data:
redis-data: