Last active
December 19, 2016 06:24
-
-
Save koolhead17/990c823654e05cc106384cb12da0c613 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Step to run Distributed Minio using Docker. | |
Install Docker Toolbox for Windows (http://www.docker.com/products/docker-toolbox) | |
After Docker Toolbox installation, open Docker Quickstart terminal and run these commads. | |
``` | |
docker pull minio/minio | |
curl https://raw.githubusercontent.com/minio/minio/master/docs/docker/docker-compose.yml > docker-compose.yml | |
docker-compose.exe up | |
``` | |
Minio browser will be simply accessible at one of the port 9001-9004, in my case the IP address is 192.168.99.100 and not the one you can see in the minio output. | |
Note: | |
1. After upload via Minio Browser, the list of files is not automatically refreshed | |
2. mc download policy doesn't always work |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment