Skip to content

Instantly share code, notes, and snippets.

@fdorantesm
Last active February 20, 2023 07:52
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 fdorantesm/85844d1f55567f25df27f02fe1611daf to your computer and use it in GitHub Desktop.
Save fdorantesm/85844d1f55567f25df27f02fe1611daf to your computer and use it in GitHub Desktop.
Minio docker container using docker compose
version: '3.8'
services:
minio:
image: minio/minio:latest
container_name: minio
restart: always
command: server --console-address :9001 /data
environment:
- MINIO_ROOT_USER=AKIAIOSFODNN7EXAMPLE
- MINIO_ROOT_PASSWORD=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
volumes:
- .minio:/data
ports:
- 9000:9000
- 9001:9001
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment