shrmpy / ember-cli

To have the ember-cli tool available from a container

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Gather ember-cli dependencies together into a image

This starts with the Alpine tag of Node base image, and follows the install steps from Ember-CLI

Quickstart

Create a new application named tutorial-quickstart underneath the subdirectory called test:

    docker run --network=host -ti --rm -v $(pwd)/test:/app shrmpy/ember new tutorial-quickstart

Then start the dev server to browse it (localhost:4200):

    docker run --network=host -ti --rm -v $(pwd)/test:/app -w /app/tutorial-quickstart shrmpy/ember serve

Create a route for scientists:

    docker run --network=host -ti --rm -v $(pwd)/test:/app -w /app/tutorial-quickstart shrmpy/ember generate route scientists

Create a component for the people list:

    docker run --network=host -ti --rm -v $(pwd)/test:/app -w /app/tutorial-quickstart shrmpy/ember generate component people-list

About

To have the ember-cli tool available from a container


Languages

Language:Shell 100.0%