forked from CogStack/MedCATtrainer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-latest.yml
49 lines (48 loc) · 1.03 KB
/
docker-compose-latest.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
version: '3.4'
services:
medcattrainer:
container_name: medcattrainer
hostname: medcat
restart: always
image: cogstacksystems/medcat-trainer:latest
volumes:
- ./configs:/home/configs
- api-media:/home/api/media
- api-static:/home/api/static
- api-db:/home/api/db
expose:
- "8000"
env_file:
- ./envs/env
command: /home/run.sh
nginx:
container_name: medcattrainer_nginx
image: cogstacksystems/medcat-trainer-nginx:latest
restart: always
volumes:
- api-media:/home/api/media
- api-static:/home/api/static
ports:
- "${MCTRAINER_PORT:-8001}:8000"
depends_on:
- medcattrainer
solr:
container_name: mct_solr
image: solr:8
restart: always
environment:
- CONCEPT_SEARCH_SERVICE_HOST=localhost
- CONCEPT_SEARCH_SERVICE_PORT=8983
expose:
- "8983"
ports:
- 8983:8983
volumes:
- solr-data:/var/solr
command:
- -cloud
volumes:
api-media:
api-static:
api-db:
solr-data: