Add docker compose with working gui

This commit is contained in:
Krzysztof Płaczek
2025-06-12 08:35:08 +02:00
parent a44c06c4b2
commit 59bf06ebd4
3 changed files with 25 additions and 2 deletions

View File

@@ -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
``` ```

View File

@@ -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"

View 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"