Starts an s3fs container mounting an s3 bucket containing sudoreplay backups. You can run sudoreplay commands against the container with exegol's "replay" subcommand.
The tool is designed to have environments in separate buckets, access can be restricted for users.
docker build -t kronostechnologies/exegol .
docker pull kronostechnologies/exegol
These can be placed in ~/.exegol
Credentials configured in your local ~/.aws/credentials.
This string will be prepended to form the bucket name.
This string will be appended to form the bucket name.
Specify a static s3-bucket name, if needed.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Statement",
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:ListObjects",
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::prefix-env-suffix/*",
"arn:aws:s3:::prefix-env-suffix"
]
}
]
}
./exegol bootstrap __environment__
./exegol replay __environment__ -l
./exegol status
./exegol destroy __environment__
./exegol help