-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.develop.yml
More file actions
46 lines (44 loc) · 1.06 KB
/
docker-compose.develop.yml
File metadata and controls
46 lines (44 loc) · 1.06 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
version: "3"
services:
yarrrml-parser:
environment:
- PORT=${PARSER_PORT}
image: ghcr.io/mat-o-lab/yarrrml-parser:latest
#build: yarrrml-parser/.
expose:
- ${PARSER_PORT}
restart: always
networks:
- rdfconverter_net
rmlmapper:
# changing port doesnt work - issue on rmlmapper side
environment:
- PORT=${MAPPER_PORT}
container_name: rmlmapper-webapi
#image: ghcr.io/mat-o-lab/rmlmapper-webapi:latest
build: rmlmapper-webapi/.
expose:
- ${MAPPER_PORT}
restart: always
networks:
- rdfconverter_net
rdfconverter:
container_name: rdfconverter
build: .
environment:
- YARRRML_URL=http://yarrrml-parser:${PARSER_PORT}
- MAPPER_URL=http://rmlmapper:${MAPPER_PORT}
- APP_MODE=${APP_MODE}
- SERVER_URL=${SERVER_URL}
ports:
- ${APP_PORT}:${CONVERTER_PORT}
volumes:
- ./:/src
restart: always
entrypoint: python app.py
networks:
- rdfconverter_net
networks:
rdfconverter_net:
name: rdfconverter_net
driver: bridge