Friday, 7 October 2022

Drupal Rocket Chat - Windows Configuration Setup

Follow below steps to configure Rocket Chat in windows machines (Especially for developer's local system)


  • Download and install Docker for Windows
  • Create or open a directory you want to hold the content of your server
  • Create a file named docker-compose.yml based on our example
  • In the same directory as the above file, run the following command and wait for the server to fully start, takes a couple of minutes
docker-compose up
docker-compose logs -f rocketchat


Access your Rocket.Chat server at http://localhost:3000

Source: https://docs.rocket.chat/quick-start/deploying-rocket.chat/other-deployment-methods/windows-10-pro

No comments:

Post a Comment

PHP Codesniffer - Ignore warning errors

 Use below command to ignore warnings while generating report. phpcs -n /path_to_directory/ The above command will result only errors and ig...