-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.debug.yml
59 lines (58 loc) · 2.26 KB
/
docker-compose.debug.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
services:
mandataris:
image: local-js-template
#build: ./
restart: 'no'
labels:
- 'logging=true'
environment:
NODE_ENV: development
NO_BABEL_NODE: true
EMAIL_FROM_MANDATARIS_EFFECTIEF: "[email protected]"
NOTIFICATION_CRON_PATTERN: "* * * * *" # Every minute
SEND_EMAIL_FOR_MANDATARIS_EFFECTIEF: false
ports:
- '8082:80'
- '9225:9229'
volumes:
- ../app-lokaal-mandatenbeheer/config/mandataris:/config
- ../app-lokaal-mandatenbeheer/data/files/burgemeester-benoemingen:/uploads
- ./:/app
# ignore app/dist because this is where we map the built files to, otherwise we get an infinite loop of creating files (on mac)
- /app/dist
- ./dist:/build/
networks:
- debug
mandatees-decisions:
image: lblod/delta-consumer:0.0.24
profiles:
- decision-consumer
volumes:
- ./config/custom-dispatching:/config/triples-dispatching/custom-dispatching
- ./data/files/mandatees-decisions:/consumer-files
environment:
DCR_SERVICE_NAME: 'mandatees-decisions'
DCR_SYNC_BASE_URL: 'http://producer-identifier'
DCR_JOB_CREATOR_URI: 'http://lblod.data.gift/services/delta-producer-background-jobs-initiator-mandatees-decisions'
DCR_SYNC_DATASET_SUBJECT: 'http://data.lblod.info/datasets/delta-producer/dumps/Mandatees-DecisionsCacheGraphDump'
DCR_INITIAL_SYNC_JOB_OPERATION: 'http://redpencil.data.gift/id/jobs/concept/JobOperation/deltas/initialPublicationGraphSyncing/mandatees-decisions'
DCR_DELTA_SYNC_JOB_OPERATION: 'http://redpencil.data.gift/id/jobs/concept/JobOperation/deltas/deltaDumpFileCreation/mandatees-decisions'
DCR_START_FROM_DELTA_TIMESTAMP: '2024-01-12T15:51:23.478Z'
DCR_SYNC_FILES_PATH: '/sync/mandatees-decisions/files'
DCR_KEEP_DELTA_FILES: true
DCR_DELTA_FILE_FOLDER: '/deltas/mandatees-decisions/files'
DCR_CRON_PATTERN_DELTA_SYNC: '0 * * * * ' # Every hour
DCR_DISABLE_INITIAL_SYNC: false
SLEEP_BETWEEN_BATCHES: 1
BATCH_SIZE: 100
PARALLEL_CALLS: 20
DCR_WAIT_FOR_INITIAL_SYNC: false
DIRECT_DATABASE_ENDPOINT: http://database:8890
networks:
- debug
- deltas-sync
networks:
debug:
external: true
deltas-sync:
external: true