Cli/guide/Docker-Development-Environment/MediaWiki
MediaWiki Interaction
editYou can get a shell as your current user in the main MediaWiki container easily:
mw docker mediawiki exec bash
You can use the exec command to perform actions inside the MediaWiki container as a one off...
Such as, watching logs
mw docker mediawiki exec -- tail -f /var/log/mediawiki/debug.log
PHPUnit tests
editYou can run PHPUnit tests in the MediaWiki container easily:
mw docker mediawiki exec -- composer phpunit tests/phpunit/unit/includes/XmlTest.php
Note: You may still need to use the old phpunit.php test running for some PHPUnit tests!
mw docker mediawiki exec -- php tests/phpunit/phpunit.php tests/phpunit/unit/includes/xml/XmlTest.php
If you want to run tests with the debugger, see the XDebug section below.
XDebug
editThe default XDebug mode is develop,debug
, and the debugger will try to connect to localhost:9003
.
If you want to alter the XDebug config you can do so using an environment variable.
Determine the IP address for the client host by running
ip addr
Search for the line that says docker0
and copy the IP address after inet
. Use that address instead of 1.2.3.4
in the next section:
mw docker env set MEDIAWIKI_XDEBUG_MODE "develop,debug,profile"
mw docker env set MEDIAWIKI_XDEBUG_CONFIG "client_host=1.2.3.4" # <-- change this, see above
It often makes sense to set the client_host
to the public IP address of your physical device in your local network (i.e. wifi or ethernet IP).
You can set multiple xDebug config variables by leaving a space between them, for example:
mw docker env set MEDIAWIKI_XDEBUG_CONFIG "client_host=172.21.112.105 client_port=9000"
If you change these environment variables after the MediaWiki containers are already running, you will need to recreate them to have the settings take effect.
mw docker mediawiki create
In PHPStorm, make sure you have the option "Ignore external connections through unregistered server configurations" unchecked.
Triggering for requests
editSee https://xdebug.org/docs/step_debug#activate_debugger
Example triggering from CLI inside the MediaWiki container:
XDEBUG_SESSION=1 php test.php
Running with tests
editYou can run exec commands with environment variables, for example, if you want to make use of XDEBUG to step through a specific test in your IDE:
mw docker mediawiki exec -- XDEBUG_SESSION=1 PHP_IDE_CONFIG='serverName=<name configured in PHPStorm>' php tests/phpunit/phpunit.php <path to test>
See also
edit- User:Santhosh.thottingal/WikiFamily - Multi wiki setup and how to add new services to the MediaWiki CLI setup