Example Ember Octane app using danlynn/ember-cli docker image

This example runs through the Quick Start ember octane guide tutorial. It follows the Quick Start instructions at ember-cli-docker-compose-template for using the danlynn/ember-cli docker image with docker-compose.

The video above uses the following 3 commands to initially create a stub project with the ember-cli-docker-compose-template template.

$ proj_dir='ember-quickstart' && curl -Ls https://github.com/danlynn/ember-cli-docker-compose-template/archive/master.zip > "$proj_dir.zip" && unzip -qq -j "$proj_dir.zip" -d "$proj_dir" && rm "$proj_dir.zip" && cd "$proj_dir" && mv README.md README-template.md && ls -l
$ ./ember init
$ ./serve
This first line will create a new directory named "ember-quickstart" populated with the contents of the ember-cli-docker-compose-template repo from github then cd into that directory ready to use. The last 2 lines are common commands that use the template's 'shortcuts' to run the ember command in the container and then start the ember server.

A more detailed explanation of the project template stub, its features, and how to use it can be found in the project's README