-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
63 lines (58 loc) · 1.15 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
version: '3.8'
services:
backend:
build:
context: ./backend
dockerfile: Dockerfile
image: python-bv
container_name: backend
restart: unless-stopped
ports:
- '8090:5000'
volumes:
- ./backend:/backend
networks:
- BV-networks
linebot:
build:
context: ./bot
dockerfile: Dockerfile
image: go-linebot
container_name: go-linebot
restart: unless-stopped
ports:
- '8080:8080'
environment:
TZ: Asia/Taipei
volumes:
- ./:/linebot
networks:
- BV-networks
ngrok:
image: ngrok/ngrok:latest
container_name: ngrok
restart: unless-stopped
volumes:
- ./ngrok/ngrok.yml:/etc/ngrok.yml
ports:
- 4040:4040
command:
- "start"
- "--all"
- "--config"
- "/etc/ngrok.yml"
networks:
- BV-networks
whisper-asr-webservice:
image: onerahmet/openai-whisper-asr-webservice:latest
container_name: whisper-api
environment:
- ASR_MODEL=base
- ASR_ENGINE=openai_whisper
ports:
- "9000:9000"
networks:
- BV-networks
networks:
BV-networks:
driver: bridge