惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

H
Help Net Security
腾讯CDC
爱范儿
爱范儿
Google DeepMind News
Google DeepMind News
V
V2EX
Blog — PlanetScale
Blog — PlanetScale
Engineering at Meta
Engineering at Meta
GbyAI
GbyAI
量子位
F
Fortinet All Blogs
G
Google Developers Blog
T
The Blog of Author Tim Ferriss
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
T
Tailwind CSS Blog
J
Java Code Geeks
S
SegmentFault 最新的问题
D
Docker
博客园 - 司徒正美
The GitHub Blog
The GitHub Blog
Jina AI
Jina AI
M
MIT News - Artificial intelligence
博客园 - 【当耐特】

jobcher on 打工人日志

2023-12-21 打工人日报 2023-12-20 打工人日报 2023-12-19 打工人日报 2023-12-18 打工人日报 2023-12-17 打工人日报 2023-12-16 打工人日报 2023-12-15 打工人日报 2023-12-14 打工人日报 2023-12-13 打工人日报 2023-12-12 打工人日报 2023-12-11 打工人日报 2023-12-10 打工人日报 2023-12-09 打工人日报 2023-12-08 打工人日报 2023-12-07 打工人日报 2023-12-06 打工人日报 2023-12-05 打工人日报 2023-12-04 打工人日报 2023-12-03 打工人日报 2023-12-02 打工人日报 2023-12-01 打工人日报 2023-11-30 打工人日报 2023-11-29 打工人日报 2023-11-28 打工人日报 2023-11-27 打工人日报 2023-11-26 打工人日报 2023-11-25 打工人日报 2023-11-24 打工人日报 2023-11-23 打工人日报 2023-11-22 打工人日报
安装 minIO Azure S3网关
2022-01-07 · via jobcher on 打工人日志

安装 minIO

通过 docker 安装

1docker run -p 9000:9000 -p 41863:41863 -d --name azure-s3 \
2 -e "MINIO_ACCESS_KEY=azure存储账户" \
3 -e "MINIO_SECRET_KEY=azure存储密码" \
4 minio/minio gateway azure --console-address ":41863"

通过 docker-compose 安装

 1version: "3"
 2services:
 3  minio:
 4    image: "minio/minio:RELEASE.2022-01-04T07-41-07Z.fips"
 5    container_name: "minio"
 6    restart: "always"
 7    volumes:
 8      - "/etc/localtime:/etc/localtime"
 9    ports:
10      - "9000:9000"
11      - "9001:9001"
12    environment:
13      - "MINIO_ROOT_USER=azure存储账户"
14      - "MINIO_ROOT_PASSWORD=azure存储密码"
15    command:
16      - --console-address ":41863"