-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.example.yml
49 lines (45 loc) · 1.04 KB
/
docker-compose.example.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
services:
llm:
build: ./llm
environment:
- OLLAMA_HOST="0.0.0.0"
ports:
- 11434:11434
volumes:
- model:/usr/share/ollama/.ollama/models
db:
image: postgres
restart: always
environment:
POSTGRES_DB: pokellmon
POSTGRES_USER: pokellmon
POSTGRES_PASSWORD: qwe123
ports:
- 5432:5432
volumes:
- ./database:/var/lib/postgresql
emulation:
build: ./emulation
ports:
- 9999:9999
adminer:
image: adminer
restart: always
ports:
- 8080:8080
pokellmon:
tty: true
depends_on:
db:
condition: service_started
emulation:
condition: service_started
llm:
condition: service_started
volumes:
- ./pokellmon/.env:/pokellmon/.env
ports:
- 12345:6789
build: ./pokellmon
volumes:
model: