@@ -19,26 +19,38 @@ services:
19
19
ms_graph_exporter_beat :
20
20
build :
21
21
context : ../
22
- dockerfile : docker/MsGraphExporter. Dockerfile
23
- image : msgraphexporter:0.1.0-rc0
22
+ dockerfile : docker/Dockerfile
23
+ image : msgraphexporter:0.1.0-rc.1
24
24
command : ["msgraphexporter", "--beat"]
25
25
depends_on :
26
26
- redis
27
27
environment :
28
28
CELERY_BROKER_URL : redis://redis:6379/0
29
29
CELERY_BEAT_LOG_LEVEL : WARN
30
+ read_only : true
31
+ volumes :
32
+ - type : tmpfs
33
+ target : /tmp
34
+ tmpfs :
35
+ size : 1000000 # 1MB
30
36
31
37
ms_graph_exporter_map :
32
- image : msgraphexporter:0.1.0-rc0
38
+ image : msgraphexporter:0.1.0-rc.1
33
39
command : ["msgraphexporter", "--map"]
34
40
depends_on :
35
41
- ms_graph_exporter_beat
36
42
environment :
37
43
CELERY_BROKER_URL : redis://redis:6379/0
38
44
CELERY_WORKER_LOG_LEVEL : WARN
45
+ read_only : true
46
+ volumes :
47
+ - type : tmpfs
48
+ target : /tmp
49
+ tmpfs :
50
+ size : 1000000 # 1MB
39
51
40
52
ms_graph_exporter_fetch :
41
- image : msgraphexporter:0.1.0-rc0
53
+ image : msgraphexporter:0.1.0-rc.1
42
54
command : ["msgraphexporter", "--fetch"]
43
55
depends_on :
44
56
- ms_graph_exporter_beat
@@ -48,12 +60,28 @@ services:
48
60
GRAPH_TENANT : ${GRAPH_TENANT}
49
61
GRAPH_CLIENT_ID : ${GRAPH_CLIENT_ID}
50
62
GRAPH_CLIENT_SECRET : ${GRAPH_CLIENT_SECRET}
63
+ read_only : true
64
+ volumes :
65
+ - type : tmpfs
66
+ target : /tmp
67
+ tmpfs :
68
+ size : 1000000 # 1MB
51
69
52
70
ms_graph_exporter_store :
53
- image : msgraphexporter:0.1.0-rc0
71
+ build :
72
+ context : ../
73
+ dockerfile : docker/Dockerfile
74
+ image : msgraphexporter:0.1.0-rc.1
54
75
command : ["msgraphexporter", "--store"]
55
76
depends_on :
56
77
- ms_graph_exporter_beat
57
78
environment :
58
79
CELERY_BROKER_URL : redis://redis:6379/0
59
80
CELERY_WORKER_LOG_LEVEL : WARN
81
+ GRAPH_REDIS_URL : redis://redis:6379/0
82
+ read_only : true
83
+ volumes :
84
+ - type : tmpfs
85
+ target : /tmp
86
+ tmpfs :
87
+ size : 1000000 # 1MB
0 commit comments