This Docker image extends the official Amazon AWS CLI image by adding the AWS Session Manager plugin. It supports multiple architectures:
- x86_64 (amd64)
- ARM64 (aarch64)
docker pull ghcr.io/getprobo/docker-aws-cli-with-ssm-plugin:latest
docker run --rm -it \
-v ~/.aws:/root/.aws \
ghcr.io/getprobo/docker-aws-cli-with-ssm-plugin:latest \
s3 ls
docker run --rm -it \
-v ~/.aws:/root/.aws \
ghcr.io/getprobo/docker-aws-cli-with-ssm-plugin:latest \
ssm start-session --target i-1234567890abcdef0
To build the image locally:
docker build -t aws-cli-with-ssm-plugin .
This project is based on the Amazon AWS CLI image and the AWS Session Manager Plugin.