-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
49 lines (45 loc) · 981 Bytes
/
compose.yaml
File metadata and controls
49 lines (45 loc) · 981 Bytes
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:
restart-db:
container_name: restart-db
image: mongo
restart: always
networks:
- restart-net
restart-duckling:
container_name: restart-duckling
image: rasa/duckling
restart: always
networks:
- restart-net
restart-transformer:
container_name: restart-transformer
image: pstlab/restart-transformer
networks:
- restart-net
depends_on:
- restart-duckling
restart: always
build:
context: ./language
restart:
container_name: restart
image: pstlab/restart
ports:
- "8080:8080"
networks:
- restart-net
depends_on:
- restart-db
- restart-transformer
restart: always
build:
context: .
args:
- MONGODB_HOST=restart-db
- TRANSFORMER_HOST=restart-transformer
- LOGGING_LEVEL=DEBUG
environment:
- MONGODB_HOST=restart-db
- TRANSFORMER_HOST=restart-transformer
networks:
restart-net: