docker-live-server

An image for https://github.com/tapio/live-server

Stars
1

Running:

$ docker run --rm gtramontina/live-server:<version>

You'll get a /app work directory, so all you need to do is mount your project in the that directory with the -v, --volume docker parameter:

--volume $(pwd):/app:ro

Developing:

$ make build    # Builds a new image
$ make test     # Runs/tests the image
$ make push     # Pushes the image up
$ make clean    # Removes any generated artifacts
$ make clobber  # Removes artifacts and generated images