Description The CleanStart Step-Cli-Fips image provides a production-ready, security-hardened container optimized for enterprise environments. Built on a minimal base OS with comprehensive security hardening, this image delivers reliable application execution with advanced security features.
Pull Latest Image Download the container image from the registry
bash docker pull clnstrt-images.cleanstart.com/$ORGANIZATION/step-cli-fips:latest
docker pull clnstrt-images.cleanstart.com/$ORGANIZATION/step-cli-fips:latest-devBasic Run Run the container with basic configuration
bash docker run -d --name step-cli-fips-prod \\
--read-only \\
--security-opt=no-new-privileges \\
--user 1000:1000 \\
clnstrt-images.cleanstart.com/$ORGANIZATION/step-cli-fips:latestProduction Deployment Deploy with production security settings
bash docker run -it --name step-cli-fips-test clnstrt-images.cleanstart.com/$ORGANIZATION/step-cli-fips:latest-devVolume Mount Mount local directory for persistent data
bash docker run --rm -v $(pwd)/data:/data --user $(id -u):$(id -g) clnstrt-images.cleanstart.com/$ORGANIZATION/step-cli-fips:latestPort Forwarding Run with custom port mappings
bash docker run -p 8080:80 clnstrt-images.cleanstart.com/$ORGANIZATION/step-cli-fips:latest