-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yaml
69 lines (63 loc) · 1.51 KB
/
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# run `docker compose up -d flair`
# See below for deploying development instances
services:
stanza-api:
image: ramonziai/stanza-api
environment:
- STANZA_LANGUAGES=fa
ports:
- 8088:80
restart: always
madamira:
image: reynoldsnlp/madamira_container:1.0
ports:
- 8223:8223
restart: always
flair-base:
image: reynoldsnlp/flair-base
build:
dockerfile: ./Dockerfile_base
flair: # docker compose up -d flair # Use this to deploy all languages
image: reynoldsnlp/flair
depends_on:
- flair-base
- madamira
- stanza-api
build:
dockerfile: ./Dockerfile
ports:
- 8080:8080
env_file:
- flair-variables.env
arabic: # docker compose up -d arabic # Use this for Arabic development
image: reynoldsnlp/flair
depends_on:
- flair-base
- madamira
build:
dockerfile: ./Dockerfile
ports:
- 8080:8080
env_file:
- flair-variables.env
corenlp: # docker compose up -d corenlp # use this for English, German, or Russian development
image: reynoldsnlp/flair
depends_on:
- flair-base
build:
dockerfile: ./Dockerfile
ports:
- 8080:8080
env_file:
- flair-variables.env
stanza: # docker compose up -d stanza # Use this for Persian development
image: reynoldsnlp/flair
depends_on:
- flair-base
- stanza-api
build:
dockerfile: ./Dockerfile
ports:
- 8080:8080
env_file:
- flair-variables.env