Skip to content

Instantly share code, notes, and snippets.

@erangaeb
Last active March 20, 2020 05:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erangaeb/584f5ad73a646d4987bf050fce3f0b71 to your computer and use it in GitHub Desktop.
Save erangaeb/584f5ad73a646d4987bf050fce3f0b71 to your computer and use it in GitHub Desktop.
run minio with docker
# run minio
# MINIO_ACCESS_KEY/MINIO_SECRET_KEY defines the Minio admin credentials
docker run -d --name minio \
-p 9000:9000 \
--env MINIO_ACCESS_KEY="rahasakkey" \
--env MINIO_SECRET_KEY="rahasaksecret" \
bitnami/minio
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment