Docker Container
Docker Run
docker run -d \
--name qscan \
--restart always \
-e REGISTRATION_TOKEN=your-registration-token \
-e METRICS_PORT=8080 \
-e LOG_LEVEL=info \
-e NUM_POLLERS=1 \
-e NUM_SCANNERS=1 \
-p 8080:8080 \
--memory=12g \
--cpus=2 \
us-docker.pkg.dev/qpoint-edge/public/qscan:latestdocker run -d \
--name qscan \
--restart always \
-e REGISTRATION_TOKEN=your-registration-token \
-e S3_ENDPOINT_URL=http://your-s3-endpoint:3900 \
-e S3_BUCKET_NAME=qpoint \
-e S3_REGION_NAME=us-east-1 \
-e AWS_ACCESS_KEY_ID=your-access-key \
-e AWS_SECRET_ACCESS_KEY=your-secret-key \
-e METRICS_PORT=8080 \
-e LOG_LEVEL=info \
-e NUM_POLLERS=1 \
-e NUM_SCANNERS=1 \
-p 8080:8080 \
--memory=12g \
--cpus=2 \
us-docker.pkg.dev/qpoint-edge/public/qscan:latestDocker Compose
Resource Limits
Configuration
Memory Limit
CPU Limit
Last updated