What are the Slack Archives?

Itโ€™s a history of our time together in the Slack Community! Thereโ€™s a ton of knowledge in here, so feel free to search through the archives for a possible answer to your question.

Because this space is not active, you wonโ€™t be able to create a new post or comment here. If you have a question or want to start a discussion about something, head over to our categories and pick one to post in! You can always refer back to a post from Slack Archives if needed; just copy the link to use it as a reference..

Hey! How to enable and use xdebug on command line using docker sdk? i started the setup with `docker

UPPB2H525
UPPB2H525 Posts: 51 ๐Ÿง‘๐Ÿปโ€๐Ÿš€ - Cadet

Hey! How to enable and use xdebug on command line using docker sdk?
i started the setup with docker/sdk up -x and xdebug works fine for frontend calls via the browser. The breakpoints are recognized and everything is fine.
Now i am trying to debug a console command but phpstorm does not stop.
Also xdebug seems not to be enabled in the cli container.

$ docker/sdk cli php -v

PHP 7.3.22 (cli) (built: Sep  3 2020 22:03:24) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.3.22, Copyright (c) 1998-2018 Zend Technologies
    with Zend OPcache v7.3.22, Copyright (c) 1999-2018, by Zend Technologies
    with blackfire v1.36.0~linux-musl-x64-non_zts73, <https://blackfire.io>, by Blackfire

What am i doing wrong?

Comments

  • UKHD8KTMF
    UKHD8KTMF Posts: 393 ๐Ÿง‘๐Ÿปโ€๐Ÿš€ - Cadet

    try docker/sdk cli -x php -v

  • UPPB2H525
    UPPB2H525 Posts: 51 ๐Ÿง‘๐Ÿปโ€๐Ÿš€ - Cadet

    Uff. Ok that was easy. Any chance to get it enabled permanently in the container?

  • UKHD8KTMF
    UKHD8KTMF Posts: 393 ๐Ÿง‘๐Ÿปโ€๐Ÿš€ - Cadet

    I believe not, but you can just enter cli container docker/sdk cli -x

  • UPPB2H525
    UPPB2H525 Posts: 51 ๐Ÿง‘๐Ÿปโ€๐Ÿš€ - Cadet

    Thank you!