minio/docs/docker
2016-11-02 08:54:20 -07:00
..
docker-compose.yml docker: Move the docker document and compose to a separate dir. (#3135) 2016-10-31 02:08:16 -07:00
README.md docs: Fixed path for docker compose (#3156) 2016-11-02 08:54:20 -07:00

Minio Docker Quickstart Guide Gitter

1. Test Minio on Docker.

Minio generates new access and secret keys each time you run this command. Container state is lost after you end this session. This mode is only intended for testing purpose.


docker run -p 9000:9000 minio/minio server /export

2. Run Minio Standalone on Docker.

Minio container requires a persistent volume to store configuration and application data. Following command maps local persistent directories from the host OS to virtual config ~/.minio and export /export directories.


docker run -p 9000:9000 --name minio1 \
  -v /mnt/export/minio1:/export \
  -v /mnt/config/minio1:/root/.minio \
  minio/minio server /export

3. Run Minio Standalone on Docker with Custom Access and Secret Keys

To override Minio's auto-generated keys, you may pass secret and access keys explicitly as environment variables. Minio server also allows regular strings as access and secret keys.


docker run -p 9000:9000 --name minio1 \
  -e "MINIO_ACCESS_KEY=AKIAIOSFODNN7EXAMPLE" \
  -e "MINIO_SECRET_KEY=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY" \
  -v /mnt/export/minio1:/export \
  -v /mnt/config/minio1:/root/.minio \
  minio/minio server /export

4. Test Distributed Minio on Docker

To run 4 minio servers inside different docker containers using docker-compose. Please download docker-compose.yml to your current working directory.

Run docker-compose

docker-compose pull
docker-compose up

Each instance is accessible on the host at ports 9001 through 9004, proceed to access the Web browser at http://localhost:9001/