-
Notifications
You must be signed in to change notification settings - Fork 34
/
docker-compose-dev.yml
60 lines (56 loc) · 1.31 KB
/
docker-compose-dev.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
50
51
52
53
54
55
56
57
58
59
60
# Dev compose yml file for building, running and mounting local git cloned repo.
services:
medcattrainer:
build:
network: host
context: ./webapp
args:
SPACY_MODELS: ${SPACY_MODELS:-en_core_web_md}
restart: always
volumes:
- ./webapp/api/core:/home/api/core
- ./webapp/api/api:/home/api/api
- ./webapp/scripts/run.sh:/home/scripts/run.sh
- ./configs:/home/configs
- api-media:/home/api/media
- api-static:/home/api/static
- api-db:/home/api/db
- api-db-backup:/home/api/db-backup
env_file:
- ./envs/env
environment:
- MCT_VERSION=latest
command: /home/scripts/run.sh
nginx:
image: nginx
restart: always
volumes:
- api-media:/home/api/media
- api-static:/home/api/static
- ./nginx/nginx.conf:/etc/nginx/nginx.conf
- ./nginx/sites-enabled/:/etc/nginx/sites-enabled
env_file:
- ./envs/env
ports:
- ${MCTRAINER_PORT:-8001}:8000
depends_on:
- medcattrainer
- solr
solr:
container_name: mct_solr
image: solr:8
restart: always
env_file:
- ./envs/env
ports:
- ${SOLR_PORT:-8983}:8983
volumes:
- solr-data:/var/solr
command:
- -cloud
volumes:
api-media:
api-static:
api-db:
api-db-backup:
solr-data: