File size: 334 Bytes
0fa8221
 
 
f780aa2
 
 
0fa8221
 
385448a
 
0fa8221
 
 
 
 
 
 
 
385448a
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
version: "3.9"
services:
  ollama:
    build:
      context: .
      dockerfile: Dockerfile
    ports:
      - "11434:11434"
    volumes:
      - ollama-data:/home/user/.ollama
  gateway:
    build:
      context: .
      dockerfile: Dockerfile.gateway
    ports:
      - "5000:5000"
    depends_on:
      - ollama
volumes:
  ollama-