A simple dockerized aurelia-cli.
Simply run the docker container with ports, a workspace and a volume (if you want to keep your project).
docker run -it --rm -w /app -v ${PWD}:/app -p 8080:8080 shauniarima/aurelia-cliBy default that container set the workspace to /app. So you just need to mount your volume on /app.
docker run -it --rm -v ${PWD}:/app -p 8080:8080 shauniarima/aurelia-cliYou should read the cli documentation from aurelia!