Add docker compose with working gui
This commit is contained in:
@@ -1,9 +1,16 @@
|
|||||||
Minio S3 config repo
|
Minio S3 config repo
|
||||||
=====
|
=====
|
||||||
|
|
||||||
### Starting the project
|
### Starting the project with the latest version of Min.IO
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cp docker-compose.yaml.dist docker-compose.yaml
|
cp docker-compose.yaml.dist docker-compose.yaml
|
||||||
docker compose up -d
|
docker compose up -d
|
||||||
|
```
|
||||||
|
|
||||||
|
### Starting the project with the latest verion of Min.IO that supports the colsole with a features
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cp docker-compose.yaml.dist-gui docker-compose.yaml
|
||||||
|
docker compose up -d
|
||||||
```
|
```
|
||||||
@@ -3,7 +3,7 @@ volumes:
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
minio:
|
minio:
|
||||||
image: quay.io/minio/minio
|
image: quay.io/minio/minio:latest
|
||||||
container_name: minio
|
container_name: minio
|
||||||
ports:
|
ports:
|
||||||
- "9100:9000"
|
- "9100:9000"
|
||||||
|
|||||||
16
docker-compose.yaml.dist-gui
Normal file
16
docker-compose.yaml.dist-gui
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
volumes:
|
||||||
|
minio_data:
|
||||||
|
|
||||||
|
services:
|
||||||
|
minio:
|
||||||
|
image: quay.io/minio/minio:RELEASE.2025-04-22T22-12-26Z
|
||||||
|
container_name: minio
|
||||||
|
ports:
|
||||||
|
- "9100:9000"
|
||||||
|
- "9101:9001"
|
||||||
|
environment:
|
||||||
|
MINIO_ROOT_USER: admin
|
||||||
|
MINIO_ROOT_PASSWORD: password
|
||||||
|
volumes:
|
||||||
|
- minio_data:/data
|
||||||
|
command: server /data --console-address ":9001"
|
||||||
Reference in New Issue
Block a user