-
Notifications
You must be signed in to change notification settings - Fork 10
/
docker-compose.yaml
55 lines (49 loc) · 933 Bytes
/
docker-compose.yaml
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
version: '3'
services:
mariadb:
# build: ./mariadb
image: wf2030/mariadb:10.3
networks:
- hpnet
ports:
- 3306:3306
environment:
MYSQL_ROOT_PASSWORD: root
beanstalk:
# build: ./beanstalk
image: wf2030/beanstalk:1.11
networks:
- hpnet
ports:
- 11300:11300
hiprice-dispatcher:
# build: ../hiprice-dispatcher
image: wf2030/hiprice-dispatcher:0.1.0
networks:
- hpnet
depends_on:
- mariadb
- beanstalk
hiprice-web:
# build:
# context: ../hiprice-web
# args:
# CHATBOT_SERVER: 192.168.1.112:6200
image: wf2030/hiprice-web:0.1.0
networks:
- hpnet
ports:
- 6100:6100
hiprice-chatbot:
# build: ./
image: wf2030/hiprice-chatbot:0.1.0
networks:
- hpnet
ports:
- 6200:6200
depends_on:
- mariadb
- beanstalk
networks:
hpnet:
driver: bridge