@@ -293,23 +293,28 @@ to ``DATABASE``, the web server creates environment variables starting with
293
293
Here is the list of supported services with their ports and default Symfony
294
294
prefixes:
295
295
296
- ============= ===== ======================
297
- Service Port Symfony default prefix
298
- ============= ===== ======================
299
- MySQL 3306 ``DATABASE_ ``
300
- PostgreSQL 5432 ``DATABASE_ ``
301
- Redis 6379 ``REDIS_ ``
302
- RabbitMQ 5672 ``RABBITMQ_ `` (set user and pass via Docker ``RABBITMQ_DEFAULT_USER `` and ``RABBITMQ_DEFAULT_PASS `` env var)
303
- ElasticSearch 9200 ``ELASTICSEARCH_ ``
304
- MongoDB 27017 ``MONGODB_ `` (set the database via a Docker ``MONGO_DATABASE `` env var)
305
- Kafka 9092 ``KAFKA_ ``
306
- ============= ===== ======================
307
-
308
- The server also supports Mailcatcher images (including
309
- ``schickling/mailcatcher ``). When ports ``1025 `` and ``1080 `` are detected,
310
- ``MAILER_* `` environment variables are added to support both Symfony Mailer and
311
- Swiftmailer. To access the web mailer, use ``symfony open:local:webmail `` or
312
- click on the "Webmail" link in the web debug toolbar.
296
+ ============= ========= ======================
297
+ Service Port Symfony default prefix
298
+ ============= ========= ======================
299
+ MySQL 3306 ``DATABASE_ ``
300
+ PostgreSQL 5432 ``DATABASE_ ``
301
+ Redis 6379 ``REDIS_ ``
302
+ RabbitMQ 5672 ``RABBITMQ_ `` (set user and pass via Docker ``RABBITMQ_DEFAULT_USER `` and ``RABBITMQ_DEFAULT_PASS `` env var)
303
+ Elasticsearch 9200 ``ELASTICSEARCH_ ``
304
+ MongoDB 27017 ``MONGODB_ `` (set the database via a Docker ``MONGO_DATABASE `` env var)
305
+ Kafka 9092 ``KAFKA_ ``
306
+ Mailcatcher 1025/1080 ``MAILER_ ``
307
+ 25/80
308
+ ============= ========= ======================
309
+
310
+ You can open web management interfaces for the services that expose them:
311
+
312
+ .. code-block :: bash
313
+
314
+ $ symfony open:local:webmail
315
+ $ symfony open:local:rabbitmq
316
+
317
+ Or click on the links in the "Server" section of the web debug toolbar.
313
318
314
319
.. tip ::
315
320
0 commit comments