https://github.com/ivotron/docker-paraviewweb
https://github.com/ivotron/docker-paraviewweb
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ivotron/docker-paraviewweb
- Owner: ivotron
- Created: 2019-08-07T00:19:54.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-09T00:08:52.000Z (almost 7 years ago)
- Last Synced: 2025-10-30T11:13:08.894Z (7 months ago)
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker ParaView Web
Visualize `.vtk` files using [ParaView Web][paraview]:
```bash
docker run --rm -ti -p 8000:80 -v /path/to/data:/data popperized/paraviewweb
```
Go to to see the application
running. If you would like to modify other parameters:
```bash
docker run -p 8000:80 \
-v /path/to/vtk/data:/data \
-e PROTOCOL="ws" \
-e SERVER_NAME="localhost" \
-e EXTRA_PVPYTHON_ARGS="-dr" \
-it \
popperized/paraviewweb
```
[paraview]: http://kitware.github.io/paraviewweb/