A Web GUI for your S3 buckets. Based on Cloudlena S3 Manager
templates | ||
.cfignore | ||
.gitignore | ||
.travis.yml | ||
bucket-view.go | ||
bucket-view_test.go | ||
buckets-view.go | ||
buckets-view_test.go | ||
copy-object.go | ||
create-bucket.go | ||
create-bucket_test.go | ||
create-object.go | ||
delete-bucket.go | ||
delete-bucket_test.go | ||
delete-object.go | ||
delete-object_test.go | ||
docker-compose.yml | ||
Dockerfile | ||
errors.go | ||
get-object.go | ||
get-object_test.go | ||
glide.lock | ||
glide.yaml | ||
LICENSE | ||
main.go | ||
manifest.yml | ||
minio.go | ||
README.md | ||
s3-client-mock.go | ||
s3-client.go |
S3 Manager
A Web GUI written in Go to manage S3 buckets from any provider.
Environment Variables
S3_ACCESS_KEY_ID
: Required. Your S3 access key IDS3_SECRET_ACCESS_KEY
: Required. Your S3 secret access keyS3_ENDPOINT
: Optional. In case you are using a different S3 provider than AWS. Defaults tos3.amazonaws.com
V2_SIGNING
: Optional. In case your S3 provider still uses V2 Signing, set this totrue
Run locally
- Run
go build
- Set environment variables in your env
- Execute the binary and visit http://localhost:8080
Run with Docker
- Set environment variables in
docker-compose.yml
- Run
docker-compose up
- Visit http://localhost:8080
Build with Docker and run anywhere
-
Run
docker run --rm -v "${PWD}:/go/src/github.com/mastertinner/s3-manager" -w /go/src/github.com/mastertinner/s3-manager golang curl https://glide.sh/get | sh && glide install && go build
To cross-compile for windows, use the
-e "GOOS=windows" -e "GOARCH=amd64"
flags (depending on your system, you might have to adjustGOARCH
)To cross-compile for macOS, use the
-e "GOOS=darwin" -e "GOARCH=amd64"
flags (depending on your system, you might have to adjustGOARCH
)
Run on Cloud Foundry
- Set environment variables in
manifest.yml
- Set host that isn't taken yet in
manifest.yml
- Run
cf push