From 59bf06ebd4f4dc10c36f0587b82fc0893a196ffe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20P=C5=82aczek?= Date: Thu, 12 Jun 2025 08:35:08 +0200 Subject: [PATCH] Add docker compose with working gui --- README.md | 9 ++++++++- docker-compose.yaml.dist | 2 +- docker-compose.yaml.dist-gui | 16 ++++++++++++++++ 3 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 docker-compose.yaml.dist-gui diff --git a/README.md b/README.md index 8fa5144..f595424 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,16 @@ Minio S3 config repo ===== -### Starting the project +### Starting the project with the latest version of Min.IO ```bash cp docker-compose.yaml.dist docker-compose.yaml 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 ``` \ No newline at end of file diff --git a/docker-compose.yaml.dist b/docker-compose.yaml.dist index be80ee0..499a96d 100644 --- a/docker-compose.yaml.dist +++ b/docker-compose.yaml.dist @@ -3,7 +3,7 @@ volumes: services: minio: - image: quay.io/minio/minio + image: quay.io/minio/minio:latest container_name: minio ports: - "9100:9000" diff --git a/docker-compose.yaml.dist-gui b/docker-compose.yaml.dist-gui new file mode 100644 index 0000000..d208f07 --- /dev/null +++ b/docker-compose.yaml.dist-gui @@ -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" \ No newline at end of file