AWS S3 proxy
- Must have a valid AWS credentials file as per https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html
- Edit a
config.json
as per your bucket settings
{
"bucket_name":"vas-bucket-1",
"region": "eu-central-1",
"server_port": "8080"
}
(The port must match the second port in the run docker image command below.)
docker build . -t bucketproxy
docker run -p 127.0.0.1:8080:8080 -v $(pwd)/config.json:/app/config.json -v ~/.aws/credentials:/root/.aws/credentials bucketproxy