Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexellis/miniokit
S3-in-a-box (Minio) packaged with LinuxKit
https://github.com/alexellis/miniokit
Last synced: 18 days ago
JSON representation
S3-in-a-box (Minio) packaged with LinuxKit
- Host: GitHub
- URL: https://github.com/alexellis/miniokit
- Owner: alexellis
- Created: 2017-04-25T08:45:27.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-04-28T10:26:53.000Z (over 7 years ago)
- Last Synced: 2024-10-12T18:52:33.063Z (about 1 month ago)
- Size: 3.91 KB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# miniokit
S3-in-a-box (Minio) packaged with LinuxKitThis page will be the reference material for a blog post - to be published soon.
Build the image:
```
# moby build -name minio ./minio.yml
```Run the appliance:
```
# linuxkit run -disk-size 4096 -disk disk1.img -ip 192.168.65.101 minio
```Find your access and secret key:
* On the VM shell, type in the following:
```
# / runc exec minio grep "access" /root/.minio/config.json
# / runc exec minio grep "secret" /root/.minio/config.json
```Now, on your Mac:
* Launch a Docker client and mount the folders you need:
```
# docker run -v $HOME/Downloads:/root/Downloads --entrypoint=sh -ti minio/mc
```Now set up a remote S3 client entry called `s3` and create your first bucket:
```
# mc config host add s3 http://192.168.65.101:9000 BPLPLXNA6O9HFT0KOA15 kaX6fvkUgfZ2YM8atymxu3kULEkQn8FPH0PcUS6n
# mc mb s3/downloads
```