Docker Image with Yeoman generators for Outrigger-enabled application development.
This Docker image contains primary Yeoman generators used by the Outrigger community.
- Outrigger Drupal (Best practices for Drupal projects, including Outrigger-based development.)
- Generator Pattern Lab Starter (A Drupal theme for best-of-breed frontend practices.)
- Generator Gadget (A Drupal scaffolding generator for Drupal setup with grunt-drupal-tasks
This project is built on outrigger/yeoman, a Docker image which facilitates running Yeoman generators in Docker containers.
If you are an Outrigger user, this project is what powers the rig project create
command.
Run the Outrigger Drupal generator.
mkdir ~/PROJECT-NAME
cd ~/PROJECT-NAME
docker run -it --rm -v $PWD:/generated outrigger/generator
To add additional arguments you must also specify the name of the generator you want to run:
docker run -it --rm -v $PWD:/generated outrigger/generator gadget "[Arg1, Arg2, ..]"
To see the main Yeoman prompt specify an empty generator name:
docker run -it --rm -v $PWD:/generated outrigger/generator ""