-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdocker-compose.yml
43 lines (39 loc) · 931 Bytes
/
docker-compose.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
version: "3.9"
services:
nginx:
image: nginx:latest
container_name: "llm-demo-nginx"
restart: "always"
ports:
- "80:80"
volumes:
- "./nginx/index.html:/usr/share/nginx/html/index.html"
- "./nginx/default.conf:/etc/nginx/conf.d/default.conf"
networks:
- "llm_demo_network"
rasa:
build:
context: "."
container_name: "llm-demo-rasa"
restart: "always"
volumes:
- "./data:/app/data"
- "./credentials.yml:/app/credentials.yml"
- "./endpoints.yml:/app/endpoints.yml"
- "./domain.yml:/app/domain.yml"
- "./config.yml:/app/config.yml"
networks:
- "llm_demo_network"
actions:
build:
context: "./actions"
container_name: "llm-demo-actions"
restart: "always"
volumes:
- "./actions:/app/actions"
networks:
- "llm_demo_network"
env_file:
- ".env"
networks:
llm_demo_network: