We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed3c8ab commit 424e35dCopy full SHA for 424e35d
1 file changed
docs/rabbitmq.md
@@ -92,3 +92,17 @@ bin/postgres migrate
92
93
SuperStack will execute the new migration files, skipping those already
94
applied.
95
+
96
+## 4. Add RabbitMQ Service
97
98
+Add to `compose.yaml`:
99
100
+```yaml
101
+services:
102
+ rabbitmq:
103
+ image: rabbitmq:3
104
+ ports:
105
+ - 5672:5672
106
+ environment:
107
+ RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS: "-rabbit channel_max 0"
108
+```
0 commit comments