add s3 minio server
This commit is contained in:
parent
cee0bafc22
commit
3343fdfe55
2 changed files with 15 additions and 0 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
MINIO_USERNAME=
|
||||||
|
MINIO_PASSWORD=
|
|
@ -0,0 +1,13 @@
|
||||||
|
services:
|
||||||
|
minio:
|
||||||
|
image: quay.io/minio/minio
|
||||||
|
container_name: minio
|
||||||
|
ports:
|
||||||
|
- "9000:9000"
|
||||||
|
- "9001:9001"
|
||||||
|
environment:
|
||||||
|
MINIO_ROOT_USER: ${MINIO_USERNAME}
|
||||||
|
MINIO_ROOT_PASSWORD: ${MINIO_PASSWORD}
|
||||||
|
volumes:
|
||||||
|
- ./data:/data
|
||||||
|
command: server /data --console-address ":9001"
|
Loading…
Add table
Reference in a new issue