-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
46 lines (42 loc) · 1017 Bytes
/
docker-compose.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
version: "3.9"
services:
cde:
image: lfoppiano/chemdataextractor-api:1.0
restart: always
ports:
- 8076:8080
networks:
net1:
aliases:
- "cde.local"
linking_module:
image: lfoppiano/material-parsers:3.0.1
restart: always
ports:
- 8090:8080
networks:
net1:
aliases:
- "linking_module.local"
#
# glutton:
# image: ...
# restart: always
# ports:
superconductors:
image: lfoppiano/grobid-superconductors:0.5.3
volumes:
- ./resources/config/config-docker.yml:/opt/grobid/grobid-superconductors/config.yml:ro
# - /Users/lfoppiano/development/projects/grobid/grobid-superconductors/resources/config/grobid.yaml:/opt/grobid/grobid-home/config/grobid.yaml:ro
ports:
- 8072:8072
- 8073:8073
networks:
- net1
# deploy:
# resources:
# reservations:
# devices:
# - capabilities: [ gpu ]
networks:
net1: