ollama-server / docker-compose.yml
DeathDaDev's picture
feat: add gateway API for Ollama using Flask and docker-compose
0fa8221
raw
history blame
219 Bytes
version: "3.9"
services:
ollama:
build: .
ports:
- "11434:11434"
gateway:
build:
context: .
dockerfile: Dockerfile.gateway
ports:
- "5000:5000"
depends_on:
- ollama