I want to run multiple commands at once for performance reasons, eg: ``` docker-compose run --rm tests-cli "wp --version && wp --version && wp --version" ``` How can I chain commands, instead of the entrypoint considering each command as an argument to `wp`?