mirror of
https://github.com/minio/minio.git
synced 2025-01-25 21:53:16 -05:00
Add docker edge instructions
This commit is contained in:
parent
17e49a9ed2
commit
1788c58d5c
15
README.md
15
README.md
@ -17,7 +17,6 @@ Minio server is light enough to be bundled with the application stack, similar t
|
|||||||
|
|
||||||
### Install from Homebrew
|
### Install from Homebrew
|
||||||
Install minio packages using [Homebrew](http://brew.sh/)
|
Install minio packages using [Homebrew](http://brew.sh/)
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
$ brew install minio
|
$ brew install minio
|
||||||
$ minio --help
|
$ minio --help
|
||||||
@ -25,8 +24,6 @@ $ minio --help
|
|||||||
|
|
||||||
### Install from Source
|
### Install from Source
|
||||||
Source installation is only intended for developers and advanced users. If you do not have a working Golang environment, please follow [How to install Golang](https://docs.minio.io/docs/how-to-install-golang).
|
Source installation is only intended for developers and advanced users. If you do not have a working Golang environment, please follow [How to install Golang](https://docs.minio.io/docs/how-to-install-golang).
|
||||||
|
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
$ go get -u github.com/minio/minio
|
$ go get -u github.com/minio/minio
|
||||||
```
|
```
|
||||||
@ -35,16 +32,20 @@ $ go get -u github.com/minio/minio
|
|||||||
In the examples below, Minio serves the contents of the ``Photos`` directory as an object store.
|
In the examples below, Minio serves the contents of the ``Photos`` directory as an object store.
|
||||||
|
|
||||||
### Docker Container
|
### Docker Container
|
||||||
|
#### Latest Stable
|
||||||
```sh
|
```sh
|
||||||
$ docker pull minio/minio
|
$ docker pull minio/minio
|
||||||
$ docker run -p 9000:9000 minio/minio server /export
|
$ docker run -p 9000:9000 minio/minio server /export
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Latest Edge (Testing Only)
|
||||||
|
```sh
|
||||||
|
$ docker pull minio/minio:edge
|
||||||
|
$ docker run -p 9000:9000 minio/minio:edge server /export
|
||||||
|
```
|
||||||
Please visit Minio Docker quickstart guide for more [here](https://docs.minio.io/docs/minio-docker-quickstart-guide)
|
Please visit Minio Docker quickstart guide for more [here](https://docs.minio.io/docs/minio-docker-quickstart-guide)
|
||||||
|
|
||||||
### GNU/Linux
|
### GNU/Linux
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
$ chmod +x minio
|
$ chmod +x minio
|
||||||
$ ./minio --help
|
$ ./minio --help
|
||||||
@ -53,7 +54,6 @@ $ ./minio server ~/Photos
|
|||||||
```
|
```
|
||||||
|
|
||||||
### OS X
|
### OS X
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
$ chmod 755 minio
|
$ chmod 755 minio
|
||||||
$ ./minio --help
|
$ ./minio --help
|
||||||
@ -62,7 +62,6 @@ $ ./minio server ~/Photos
|
|||||||
```
|
```
|
||||||
|
|
||||||
### Microsoft Windows
|
### Microsoft Windows
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
C:\Users\Username\Downloads> minio.exe --help
|
C:\Users\Username\Downloads> minio.exe --help
|
||||||
C:\Users\Username\Downloads> minio.exe server D:\Photos
|
C:\Users\Username\Downloads> minio.exe server D:\Photos
|
||||||
@ -70,7 +69,6 @@ C:\Users\Username\Downloads> minio.exe server D:\Photos
|
|||||||
```
|
```
|
||||||
|
|
||||||
### FreeBSD
|
### FreeBSD
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
$ chmod 755 minio
|
$ chmod 755 minio
|
||||||
$ ./minio --help
|
$ ./minio --help
|
||||||
@ -86,7 +84,6 @@ Open a web browser and navigate to http://127.0.0.1:9000 to view your buckets on
|
|||||||
|
|
||||||
## 4. Test Minio Server using `mc`
|
## 4. Test Minio Server using `mc`
|
||||||
Install mc from [here](https://docs.minio.io/docs/minio-client-quickstart-guide). Use `mc ls` command to list all the buckets on your minio server.
|
Install mc from [here](https://docs.minio.io/docs/minio-client-quickstart-guide). Use `mc ls` command to list all the buckets on your minio server.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
$ mc config host add myminio http://10.0.0.10:9000 USWUXHGYZQYFYFFIT3RE MOJRH0mkL1IPauahWITSVvyDrQbEEIwljvmxdq03
|
$ mc config host add myminio http://10.0.0.10:9000 USWUXHGYZQYFYFFIT3RE MOJRH0mkL1IPauahWITSVvyDrQbEEIwljvmxdq03
|
||||||
$ mc mb myminio/mybucket
|
$ mc mb myminio/mybucket
|
||||||
|
Loading…
x
Reference in New Issue
Block a user