Docker registries
Docker registry publishing is for Fission server-rendered sites and static sites packaged as container images.
1. Package the image
fission package --project-dir examples/pokemon-card-store --target server --format docker-image --release
The package step should build or prepare the image with the tags configured in fission.toml.
2. Authenticate with the registry
Use the Docker-compatible registry authentication flow for the target registry. Fission should not store registry passwords in plain text. Use the Docker CLI session, CI secrets, environment references, operating-system key stores, or the Fission credential vault.
fission publish \
--project-dir examples/pokemon-card-store \
--provider docker-registry \
--artifact target/fission/release/server/docker-image/artifact-manifest.json \
--site production
The receipt should record image tags, digests where available, registry host, pushed byte counts, and provider output.