You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
#### 摘取镜像
```shell
yum install docker -y
docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/quay.io/minio/minio:RELEASE.2023-12-20T01-00-02Z
docker tag swr.cn-north-4.myhuaweicloud.com/ddn-k8s/quay.io/minio/minio:RELEASE.2023-12-20T01-00-02Z quay.io/minio/minio:RELEASE.2023-12-20T01-00-02Z
```
#### 启动实例
```shell
mkdir -p /opt/minio/{ data,.minio}
docker run --name minio -d -p 9000:9000 -p 9090:9090 -v /opt/minio/data:/data -v /opt/minio/.minio:/root/.minio quay.io/minio/minio:RELEASE.2023-12-20T01-00-02Z server /data --console-address ":9090" --address ":9000"
```
#### 访问办法
通过浏览器访问`http://10.10.14.210:9090/login`, 即可访问MinIO的Web管理界面,
默认凭证
```
minioadmin
minioadmin
```
#### 匿名访问
进入桶管理, 配置匿名访问规则。Prefix输入 /, Access选择 readonly。保存后, 再次访问`http://10.10.14.212:9090/dsideal/安吉丽娜朱莉.jpg`可以看到图片了。
