-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
125 lines (125 loc) · 2.77 KB
/
docker-compose.yml
File metadata and controls
125 lines (125 loc) · 2.77 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
volumes:
elasticsearch:
redis:
postgres:
services:
elasticsearch:
build: ./elasticsearch
ports:
- "9200:9200"
environment:
discovery.type: single-node
transport.host: 127.0.0.1
xpack.security.enabled: "false"
volumes:
- "elasticsearch:/usr/share/elasticsearch/data"
kibana:
image: docker.elastic.co/kibana/kibana:7.9.2
ports:
- "5601:5601"
depends_on:
- elasticsearch
environment:
ELASTICSEARCH_URL: http://elasticsearch:9200
redis:
image: redis:6.2
ports:
- "6379:6379"
volumes:
- "redis:/data"
postgres:
build: ./postgres
platform: linux/x86_64
ports:
- "5432:5432"
volumes:
- "postgres:/var/lib/postgresql/data"
environment:
POSTGRESQL_POSTGRES_PASSWORD: postgres
POSTGRESQL_USERNAME: postgres
POSTGRESQL_PASSWORD: postgres
POSTGRESQL_DATABASE: alegre
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: alegre
REPMGR_PASSWORD: repmgrpassword
REPMGR_PRIMARY_HOST: pg-0
REPMGR_PRIMARY_PORT: 5432
REPMGR_PARTNER_NODES: pg-0,pg-1:5432
REPMGR_NODE_NAME: pg-0
REPMGR_NODE_NETWORK_NAME: pg-0
REPMGR_PORT_NUMBER: 5432
# xlm_r_bert_base_nli_stsb_mean_tokens:
# build: .
# platform: linux/x86_64
# command: ["make", "run_model"]
# volumes:
# - ".:/app"
# depends_on:
# - redis
# env_file:
# - .env_file
# environment:
# MODEL_NAME: meantokens
# indian_sbert:
# build: .
# platform: linux/x86_64
# command: ["make", "run_model"]
# volumes:
# - ".:/app"
# depends_on:
# - redis
# env_file:
# - .env_file
# environment:
# MODEL_NAME: indiansbert
# paraphrase_multilingual_mpnet_base_v2:
# build: .
# platform: linux/x86_64
# command: ["make", "run_model"]
# volumes:
# - ".:/app"
# depends_on:
# - redis
# env_file:
# - .env_file
# environment:
# MODEL_NAME: paraphrasemultilingualmpnetbasev2
# mdeberta_v3_filipino:
# build: .
# platform: linux/x86_64
# command: ["make", "run_model"]
# volumes:
# - ".:/app"
# depends_on:
# - redis
# env_file:
# - .env_file
# environment:
# MODEL_NAME: mdebertav3filipino
queue_worker:
build: .
platform: linux/x86_64
command: ["make", "run_rq_worker"]
volumes:
- ".:/app"
depends_on:
- redis
env_file:
- .env_file
alegre:
build: .
platform: linux/x86_64
ports:
- "3100:3100"
volumes:
- ".:/app"
depends_on:
- postgres
- kibana
- redis
# - video
# - xlm_r_bert_base_nli_stsb_mean_tokens
# - indian_sbert
env_file:
- .env_file