-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
50 lines (50 loc) · 1.63 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
47
48
49
50
version: ‘3.3'
services:
ldes-server:
container_name: quick-start_ldes-server
image: ghcr.io/informatievlaanderen/ldes-server:20230314T0913
environment:
- SIS_DATA=/tmp
- SPRING_DATA_MONGODB_DATABASE=sample
- LDES_COLLECTIONNAME=sample
- LDES_MEMBERTYPE=https://www.w3.org/TR/vocab-ssn-ext/#sosa:ObservationCollection
- SPRING_DATA_MONGODB_HOST=ldes-mongodb
- SPRING_DATA_MONGODB_PORT=27017
- LDES_HOSTNAME=http://localhost:8080
- LDES_SHAPE=
- VIEW_TIMESTAMPPATH=http://www.w3.org/ns/prov#generatedAtTime
- VIEW_VERSIONOFPATH=http://purl.org/dc/terms/isVersionOf
- VIEWS_0_FRAGMENTATIONS_0_NAME=pagination
- VIEWS_0_NAME=by-page
- VIEWS_0_FRAGMENTATIONS_0_CONFIG_MEMBERLIMIT=1
ports:
- 8080:8080
networks:
- ldes
depends_on:
- ldes-mongodb
ldes-mongodb:
container_name: quick-start_ldes-mongodb
image: mongo:6.0.4
ports:
- 27017:27017
networks:
- ldes
# ldes-cli:
# image: ghcr.io/informatievlaanderen/ldes-cli:20230222T0959
# container_name: quick-start_ldes-client-cli
# command: "--url http://localhost:8080/sample/by-page --input-format text/turtle"
# profiles:
# - delayed-started
# network_mode: service:ldes-server
ldes-cli:
image: ghcr.io/informatievlaanderen/ldi-orchestrator:${LDI_ORCHESTRATOR_TAG:-20230407T130529}
container_name: ${USECASE_NAME:-simulator-cli}_ldio-workflow
volumes:
- ./ldio-workflow.config.yml:/application.yml:ro
profiles:
- delay-started
network_mode: service:ldes-server
networks:
ldes:
name: quick_start_network