Skip to content

Instantly share code, notes, and snippets.

@rdeutz
Created August 13, 2018 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rdeutz/45ebe915403c0c16d5cc67b5f77a0c2f to your computer and use it in GitHub Desktop.
Save rdeutz/45ebe915403c0c16d5cc67b5f77a0c2f to your computer and use it in GitHub Desktop.
Start docker-tools container
Start the container
docker run -it --rm -v $(pwd):/opt -w /opt joomlaprojects/docker-tools bash
Any command you execute from now on is runnig in the container
git clone --single-branch -b 4.0-dev https://github.com/joomla/joomla-cms.git
cd joomla-cms
composer install
npm i
Now you have a actual joomla-4.0 dev version of joomla with all files you need
Next step is to get the PR Data
git fetch origin pull/21362/head:local_pr_21362
and update all files
npm run update
Done you can now start testing (after you installed Joomla!)
ctrl + c to exit the container but you can also let it run, you might will update or test a different PR
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment