Skip to content

rongfengliang/smashing-docker

Repository files navigation

smashing docker image && basic demo

How to Running

  • build image
docker-compose build smashing
  • Running demo
docker-compose up -d dash
  • View demo dashboard
open http://localhost:3030

Run with builded docker image

  • Base image
dalongrong/smashing
  • Useage
FROM dalongrong/smashing
COPY . /app
RUN bundle
EXPOSE 3030
ENTRYPOINT [ "smashing","start" ]