Go to file
2015-07-14 11:58:37 -07:00
buildscripts Fix go installation check on amazon instance 2015-07-05 18:12:58 -07:00
cmd/mkdonut Remove dependency on minio/cli for make.go fixes #738 2015-07-13 11:39:28 -07:00
Godeps Avoid config reload all the time, reload is manually triggerred from outside 2015-07-06 17:26:35 -07:00
pkg Read req.Body for PutBucket() if any 2015-07-14 09:30:10 -07:00
.gitignore Adding initial logging framework to api_router 2015-04-28 20:37:08 -07:00
.mailmap Add contributors file 2015-05-23 11:49:07 -07:00
.travis.yml Setting gimme to use go1.4.2 2015-04-28 12:22:12 -07:00
commands.go Add mountinfo functions for detecting mount disks, and other rpc changes 2015-07-09 12:25:29 -07:00
console.go Add mkdonut command 2015-07-12 19:16:36 -07:00
CONTRIBUTING.md Update CONTRIBUTING.md 2015-05-27 18:41:14 -07:00
CONTRIBUTORS.md Add contributors file 2015-05-23 11:49:07 -07:00
contributors.sh Add contributors file 2015-05-23 11:49:07 -07:00
doc.go Update license header Mini should be Minimalist really 2015-03-19 14:35:50 -07:00
Dockerfile Fix SSL support, pointer indirection caused nil buffers 2015-07-08 11:02:15 -07:00
INSTALLGO.md Rename BUILDDEPS.md to INSTALLGO.md 2015-05-27 17:56:54 -07:00
LICENSE Initial commit 2014-10-30 21:51:52 -07:00
main.go Restructure API handlers, add JSON RPC simple HelloService right now. 2015-07-02 21:04:04 -07:00
make.go Remove dependency on minio/cli for make.go fixes #738 2015-07-13 11:39:28 -07:00
Makefile Remove dependency on minio/cli for make.go fixes #738 2015-07-13 11:39:28 -07:00
NOTICE Make sure to reply back ETag with quotes for s3 compliance 2015-06-09 01:13:02 -07:00
README.md Remove command name from title. 2015-07-14 11:58:37 -07:00
version.go Migrating minio server build to do 'go run make.go' style like mc 2015-06-16 20:23:02 -07:00

Minio Server Gitter

Minio is a minimal object storage server written in Golang and licensed under Apache license v2. Minio is compatible with Amazon S3 APIs. Build Status

Minio Client

Minio Client (mc) provides a modern alternative to Unix commands like ls, cat, cp, sync, and diff. It supports POSIX compatible filesystems and Amazon S3 compatible object storage systems. It is entirely written in Golang.

Amazon S3 Compatible Client Libraries

Server Roadmap

Storage Backend:
- Donut: Erasure coded backend.
 - Status: Standalone mode complete. 
Storage Operations:
- Collective:
  - Status: Work in progress.

Storage Management:
- WebCLI: 
  - Status: Work in progress.
- Authentication:
  - Status: Work in progress.
- Admin Console:
  - Status: Work in progress.
- User Console: 
  - Status: Work in progress.
- Logging: 
  - Status: Work in progress.

Install

GNU/Linux

Download minio from https://dl.minio.io:9000/updates/2015/Jun/linux-amd64/minio

$ wget https://dl.minio.io:9000/updates/2015/Jun/linux-amd64/minio
$ chmod +x minio
$ ./minio mode memory limit 12GB expire 2h

OS X

Download minio from https://dl.minio.io:9000/updates/2015/Jun/darwin-amd64/minio

$ wget https://dl.minio.io:9000/updates/2015/Jun/darwin-amd64/minio
$ chmod +x minio
$ ./minio mode memory limit 12GB expire 2h

How to use Minio?

asciicast

Contribute