ollamarama-matrix-chatbot/docker-compose.yaml

37 lines
756 B
YAML
Raw Normal View History

2024-11-27 20:24:10 +01:00
services:
2024-11-27 21:38:00 +01:00
ollama:
2024-11-27 21:53:36 +01:00
image: ollama/ollama
2024-11-27 21:38:00 +01:00
build:
context: .
dockerfile: Dockerfile.ollama
2024-11-27 21:53:36 +01:00
hostname: ollama
2024-11-27 21:38:00 +01:00
container_name: ollama
2024-11-27 22:45:27 +01:00
networks:
dockernet:
ipv4_address: 172.16.0.51
2024-11-27 21:38:00 +01:00
ports:
- "11434:11434"
volumes:
- ./data/ollama/history:/root/.ollama
restart: unless-stopped
2024-11-27 20:24:10 +01:00
matrix-chatbot:
2024-11-27 21:53:36 +01:00
image: matrix-chatbot:latest
2024-11-27 20:24:10 +01:00
build:
context: .
2024-11-27 21:38:00 +01:00
dockerfile: Dockerfile.chatbot
2024-11-27 21:53:36 +01:00
container_name: matrix-chatbot
hostname: matrix-chatbot
2024-11-27 20:24:10 +01:00
networks:
dockernet:
ipv4_address: 172.16.0.50
2024-11-27 21:38:00 +01:00
depends_on:
- ollama
2024-11-27 20:24:10 +01:00
volumes:
2024-11-27 21:38:00 +01:00
- ./data/chatbot/config.json:/app/config.json:ro
2024-11-27 20:24:10 +01:00
restart: unless-stopped
networks:
dockernet:
external: true