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: 5 months ago
JSON representation
An image for https://github.com/tapio/live-server
- Host: GitHub
- URL: https://github.com/gtramontina/docker-live-server
- Owner: gtramontina
- Created: 2018-04-29T13:37:17.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2026-01-15T01:49:25.000Z (5 months ago)
- Last Synced: 2026-01-15T07:58:54.703Z (5 months ago)
- Topics: docker, docker-image, git, live-server, node
- Language: Makefile
- Size: 29.3 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
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
```
---
🐳