Certificate errors (corporate proxy)
If you encounter an SSL/TLS error when trying to pull the image from docker, this may be caused by a corporate proxy on your local network. Popular corporate proxies include Zscaler Secure Internet Access (ZIA), FortiGate, Prisma Access and others. Examples of common errors caused by a corporate proxy:x509: certificate signed by unknown authorityconnection reset by peerTLS handshake timeout
Cached image is out of date
To fix the problem: Use the--pull flag with the docker build command or --pull always with docker run to force Docker to pull the latest image digest even if the version tag is the same.
To force Docker to pull the image even if an image with the same tag already exists locally:
Valid inline token returned unauthorized error
To fix the problem: Rundocker logout reg.mini.dev to reset your access and try the pull command again.
Explanation: Most likely, you previously authenticated with the docker login command and the token has since expired or been deleted. The token from the docker login command takes precedence over the inline token and this is causing the error.
Error logs not returned by grep
To fix the problem: Add2>&1 flag to docker logs command. For example:
for 2>&1 flag
2>&1 combines the standard error stream and output stream, so both are passed together to the pipe (|) and processed by grep.
Package built by older compiler version
The issue may be a false-positive. If the latest package version was built with the most recent compiler version available at the time, the package is up to date. Compiler updates will only trigger a package rebuild if there is an impact to the security posture - that is, if new vulnerabilities are detected in the previous compiler version. Example: Themongo-tools package is built with Go. If you run a version check it will look like this:
mongo-tools package version 100.13.0 was built, Go version go1.25.1was the latest available. A package build using the latest Go will be manually triggered by the Minimus team when new vulnerabilities fixes are available for the Go compiler.