Powerful Graphical Interface for PC-lint Plus.
1.9K
Start a PC-lint Plus View instance:
docker run -d -p 8280:8280 vectorgrp/pclpview
After a while (about 30 seconds), the server is ready to accept connections. Then go to http://localhost:8280/ in your web browser to use the interface with demo/demo or admin/admin accounts.
Important Note: the container image declares a volume at /opt/vector/pclpview-data and if no data volume is mounted at that path then the container runtime will automatically create an anonymous volume that is not reused across container re-creations.
To use a named volume:
docker volume create myvol
docker run -v myvol:/opt/vector/pclpview-data -d -p 8280:8280 vectorgrp/pclpview
In addition to port 8280 (HTTP), the container image also exposes port 8643 (HTTPS).
The container image is built with the minimal set of prerequisites. You might want to install Git or other SCM tools to get additional features like accessing source code.
To extend the image for your own purpose, use a Dockerfile as follows:
FROM vectorgrp/pclpview
USER root
RUN set -eux; \
microdnf install -y --nodocs git; \
microdnf clean all
USER pclpview:pclpview
For advanced usage, e.g. configuration, troubleshooting, administration, etc., please check User Guides.
PC-lint Plus View is a commercial product subject to license. Contact support at https://support.vector.com or [email protected] to request a license file.
Content type
Image
Digest
sha256:fd1b8e5ba…
Size
797.3 MB
Last updated
6 months ago
docker pull vectorgrp/pclpview