Sign inSign up

vectorgrp/pclpview

By vectorgrp

•Updated 6 months ago

Powerful Graphical Interface for PC-lint Plus.

Image
0

1.9K

vectorgrp/pclpview repository overview

⁠What is PC-lint Plus View

⁠Quick Start

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

⁠Advanced Usage

For advanced usage, e.g. configuration, troubleshooting, administration, etc., please check User Guides⁠.

⁠Auto configuration via environment variables

⁠License

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.

Tag summary

Content type

Image

Digest

sha256:fd1b8e5ba…

Size

797.3 MB

Last updated

6 months ago

docker pull vectorgrp/pclpview