ember-cli
ember-cli docker image providing a complete development environment
File Explorer
Download Latest Version (.zip)- Dockerfile
- LICENSE
- logo.png
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/danlynn/ember-cli
Downloads the entire project code from GitHub to your computer.
cd ember-cli
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker-compose.yml
Runs the command against the services defined in the compose file.
$ proj_dir='ember-project' && 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
Runs the command against the services defined in the compose file.
$ docker run --rm -ti -v $(pwd):/myapp danlynn/ember-cli:7.1.0 npm install
Runs the built image as an actual container.
$ docker run --rm -ti -v $(pwd):/myapp danlynn/ember-cli:7.1.0 bower --allow-root install bootstrap
Runs the built image as an actual container.
$ docker run --rm -ti -v $(pwd):/myapp danlynn/ember-cli:7.1.0 ember generate model user
Runs the built image as an actual container.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
