File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ services:
68
68
- apps_network
69
69
volumes :
70
70
- ./history-service:/history-service
71
-
71
+
72
72
signalling-service :
73
73
build :
74
74
context : ./signalling-service
@@ -104,6 +104,19 @@ services:
104
104
- 6379:6379
105
105
container_name : redis-container
106
106
107
+ rabbit-mq :
108
+ image : rabbitmq:3-management
109
+ networks :
110
+ - apps_network
111
+ ports :
112
+ - 5672:5672 # Port for RabbitMQ message broker
113
+ - 15672:15672 # Port for RabbitMQ Management UI
114
+ environment :
115
+ RABBITMQ_DEFAULT_USER : guest
116
+ RABBITMQ_DEFAULT_PASS : guest
117
+ volumes :
118
+ - rabbitmq_data:/var/lib/rabbitmq
119
+
107
120
python-sandbox :
108
121
build :
109
122
context : ./execution-service/execution/python
@@ -114,3 +127,8 @@ services:
114
127
115
128
networks :
116
129
apps_network :
130
+
131
+ volumes :
132
+ # Mounts a volume for RabbitMQ data persistence.
133
+ # This ensures that data is not lost when the container is restarted or removed.
134
+ rabbitmq_data :
You can’t perform that action at this time.
0 commit comments