diff --git a/README.md b/README.md index b2bf4e29..524e7571 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,8 @@ If you opt for the S3 option and the minio container, you have to define the fol You can choose the filesystem option explicitly with : **STORAGE_TYPE=FS** -| :warning: This environment variable must be set and subdirectories created before running any containers with docker-compose ! | + +| :warning: These environment variables must be set and subdirectories created before running any containers with docker-compose ! | |---------------------------------------------------------------------------------------------------------------------------------| @@ -266,6 +267,17 @@ Grafana UI: http://localhost:7000 ``` +### Minio console + +Minio management UI: + +```html +http://localhost:19090 +default credentials : + - username : minioadmin + - password : minioadmin +``` + ### Installing / Updating docker-compose to v2 [Docker compose v2](https://github.com/docker/compose) is necessary to be able to use this compose project which uses [profiles feature](https://docs.docker.com/compose/profiles/). diff --git a/docker-compose/technical/docker-compose.technical.yml b/docker-compose/technical/docker-compose.technical.yml index 6ea5f15a..00f9d559 100644 --- a/docker-compose/technical/docker-compose.technical.yml +++ b/docker-compose/technical/docker-compose.technical.yml @@ -161,10 +161,10 @@ services: # need to override entrypoint to create the bucket, is there a simpler way ? entrypoint: sh # We couldn't find yet another way to conditionnally start or not the minio container. Better solution appreciated. - command: -c '[ "$STORAGE_TYPE" = "S3" ] || exit 0; mkdir -p /data/bucket-gridsuite && /usr/bin/docker-entrypoint.sh server /data --console-address ":9090"' + command: -c '[ "${STORAGE_TYPE-FS}" = "S3" ] || exit 0; mkdir -p /data/bucket-gridsuite && /usr/bin/docker-entrypoint.sh server /data --console-address ":19090"' ports: - "19000:9000" - - "19090:9090" + - "19090:19090" volumes: - $GRIDSUITE_DATABASES/cases_v1/miniodata:/data:Z restart: on-failure