Beta This is a new service — your feedback will help us to improve it.

Container images

DollarBox runs public Linux container images. Point us at a registry reference and we pull it.

Image references that work

Common shapes:

Image references may contain letters, digits, and these characters: . _ / : @ -.

Pin versions

Pin a tag. latest works, but you give up control over when your container picks up a new image. A digest pin with @sha256:... is the strictest option.

Use this for experiments:

nginx:latest

Use this for something you expect to keep running:

nginx:1.25-alpine

Use this when rebuild reproducibility matters:

nginx@sha256:...

Runtime restrictions

Simple-mode containers run with Kubernetes PodSecurity restricted defaults:

Images that hard-code USER 0, need to write under /, require extra Linux capabilities, or listen only on another port will usually fail in simple mode.

Make an image DollarBox-friendly

Prefer images that:

Private registries

Private registries are not supported in simple mode yet. If you need a private image, mirror it to a public registry under your own account first.

Private image pull secrets are a Phase 2 feature.