docker部署minio服务

内容纲要
  1. 拉去最新版的minio镜像
    docker pull minio/minio
  2. 创建容器挂在数据的目录
    #配置文件目录:对应容器目录 /root/.minio
    mkdir -p /minio/config
    #数据目录:对应容器 /data
    mkdir -p /minio/data
  3. 运行minio
    #--console-address ":9090"参数是开放
    #minio的远程web控制台访问权限
    docker run -d --name minio \
    -v /minio/data:/data \
    -v /minio/config:/root/.minio \
    -p 52014:9000 \
    -p 52015:9090 \
    -e "MINIO_ROOT_USER=admin" \
    -e "MINIO_ROOT_PASSWORD=arc123456" \
    minio/minio server /data \
    --console-address ":9090"

2 thoughts to “docker部署minio服务”

  1. I know this if off topic but I’m looking into starting my own weblog and was
    wondering what all is required to get setup? I’m assuming having a blog like yours would
    cost a pretty penny? I’m not very internet savvy
    so I’m not 100% positive. Any suggestions or advice would be
    greatly appreciated. Cheers

  2. This blog is built using WordPress. All you need is a VPS, install MySQL, PHP, and Nginx on it, and you can build it using WordPress.All of these are free, except for purchasing a VPS.

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注