Advertisement
TheMRP

MinIO Docker Compose

Mar 31st, 2025
358
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.38 KB | None | 0 0
  1. services:
  2.   minio:
  3.     image: minio/minio
  4.     container_name: minio
  5.     restart: unless-stopped
  6.     ports:
  7.      - "9000:9000"  # MinIO API Port
  8.       - "9090:9090"  # MinIO Console Port
  9.     environment:
  10.       MINIO_ROOT_USER: "admin"
  11.       MINIO_ROOT_PASSWORD: "mysecretpassword"
  12.     volumes:
  13.      - <PATH_TO_DATA>:/data
  14.     command: server --console-address ":9090" /data
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement