Troubleshooting Docker
Debugging / Logging
- List the running service containers with
docker compose ps
- You can see the logs with
docker compose logs -f <service>
(use-f
to follow the output) - for
php
,messenger
andmessenger_ap
services, the application log is also available atstorage/logs
directory on the host, named after the running environment and date (e.g.storage/logs/prod-2023-12-01.log
)