DEV Community

Cong
Cong

Posted on

Docker command to try the Ionic Preview app

docker run --rm -p 8100:8100 --namionic node:8 bash -c \
  "git clone https://github.com/ionic-team/ionic-preview-app.git; cd ionic-preview-app &&\
  npm install && npm install -g ionic && ionic serve"

open http://localhost:8100

Top comments (0)