initial commit
This commit is contained in:
commit
780ccfbf1e
2
.env.example
Normal file
2
.env.example
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
ROOT_USER=
|
||||||
|
ROOT_PASS=
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.env
|
12
docker-compose.yaml
Normal file
12
docker-compose.yaml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
version: "3.4"
|
||||||
|
services:
|
||||||
|
minio:
|
||||||
|
image: quay.io/minio/minio
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "9000:9000"
|
||||||
|
- "9001:9001"
|
||||||
|
environment:
|
||||||
|
MINIO_ROOT_USER: ${ROOT_USER}
|
||||||
|
MINIO_ROOT_PASSWORD: ${ROOT_PASS}
|
||||||
|
command: ["server", "--console-address", ":9001", "/data"]
|
Loading…
Reference in New Issue
Block a user