-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
46 lines (43 loc) · 1.11 KB
/
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
services:
yarrrml-parser:
environment:
- PORT=${PARSER_PORT}
image: ghcr.io/mat-o-lab/yarrrml-parser:v.1.0.2
expose:
- ${PARSER_PORT}
restart: always
networks:
- rdfconverter_net
rmlmapper:
# changing port doesnt work - issue on rmlmapper side
environment:
- PORT=${MAPPER_PORT}
image: ghcr.io/mat-o-lab/rmlmapper-webapi:latest
expose:
- ${MAPPER_PORT}
restart: always
networks:
- rdfconverter_net
rdfconverter:
environment:
- YARRRML_URL=http://yarrrml-parser:${PARSER_PORT}
- MAPPER_URL=http://rmlmapper:${MAPPER_PORT}
- APP_PORT=${APP_PORT}
- APP_SECRET=${APP_SECRET}
- ADMIN_NAME=${ADMIN_NAME}
- ADMIN_MAIL=${ADMIN_MAIL}
- APP_MODE=${APP_MODE}
- APP_NAME=${APP_NAME}
- APP_SOURCE=${APP_SOURCE}
container_name: rdfconverter
image: ghcr.io/mat-o-lab/rdfconverter:latest
ports:
- ${APP_PORT}:${CONVERTER_PORT}
restart: always
entrypoint: python app.py
networks:
- rdfconverter_net
networks:
rdfconverter_net:
name: rdfconverter_net
driver: bridge