1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| version: "3.7" services: minio: image: "quay.io/minio/minio:RELEASE.2022-08-02T23-59-16Z" ports: - "2590:2590" - "2591:2591" volumes: - "./minio/data1:/data1" environment: - MINIO_ROOT_USER=minioadmin - MINIO_ROOT_PASSWORD=c9jA9ZvNXLwfs6n6fog6EJ0396Q77TbEm6G1XeDQbFG02GYwBsMh5wcTeJFzquD6sYE5saMGsrLnXernC5VaxjNfUuKqZxGRh9wf command: server /data1 --console-address ":2590" --address ":2591"
|