The Manual

Install Rust on Docker

The offical way of installing rust is to call a shell script from a remote host as follows: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh As documented here: https://www.rust-lang.org/tools/install, however, I'm not comfortable trusting that script, and

Copy Multi-Arch Docker Images

Using Skopeo DESTINATION_URI=xxxxxxxxxxx.dkr.ecr.us-west-2.amazonaws.com/mongo:6 SOURCE_URI=docker.io/mongo:6 AWS_PROFILE=profilename # Login skopeo to your registry aws ecr get-login-password --profile=${AWS_PROFILE} | skopeo login -u AWS --password-stdin $(echo $DESTINATION_URI | cut -f 1 -d '/') # Login your docker to

Docker Exit Codes

List of docker exit codes.

Enable ECR Vulnerability Image scanning

AWS User Guide Image scanning [https://docs.aws.amazon.com/AmazonECR/latest/userguide/image-scanning.html] Simple script to enable for all of our ECR repos for repo in `aws ecr describe-repositories |jq -r '.repositories[].repositoryName'`; do aws --profile=sumo ecr put-image-scanning-configuration \ --repository-name $repo \ --image-scanning-configuration scanOnPush=true done

The Manual © 2026