Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gtramontina/docker-live-server

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

docker docker-image git live-server node

Last synced: 11 days ago
JSON representation

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

Awesome Lists containing this project

README

        


Docker Tags
Docker Latest Tag
Travis


Docker image for live-server

---

#### _Running:_

```sh
$ docker run --rm gtramontina/live-server:
```

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:

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

---

#### _Developing:_

```sh
$ 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
```

---

🐳