https://github.com/handcraftedbits/docker-netshot
A Docker container used to run a netshot server
https://github.com/handcraftedbits/docker-netshot
Last synced: 11 days ago
JSON representation
A Docker container used to run a netshot server
- Host: GitHub
- URL: https://github.com/handcraftedbits/docker-netshot
- Owner: handcraftedbits
- Created: 2017-03-16T18:17:05.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-19T15:43:25.000Z (over 9 years ago)
- Last Synced: 2025-12-13T03:56:27.636Z (7 months ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Netshot Docker Container [](https://hub.docker.com/r/handcraftedbits/netshot)
A [Docker](https://www.docker.com) container used to run a [netshot](https://github.com/handcraftedbits/netshot) server.
See the [netshot REST API documentation](https://github.com/handcraftedbits/netshot#rest-api) for more information.
# Usage
## Running the netshot Server
Start the netshot Docker container as follows:
```bash
docker run -d -p 8000:8000 handcraftedbits/netshot
```
This will start netshot in the background with the default port `8000` and store screenshots in the container (i.e.,
they are not persisted upon shutdown). If you wish to persist screenshots, bind a volume to
`/opt/container/screenshots`:
```bash
docker run -d -v /home/screenshots:/opt/container/screenshots -p 8000:8000 handcraftedbits/netshot
```
This will result in all screenshots being persisted in the local directory `/home/screenshots`.