diff --git a/docker-compose.yml b/docker-compose.yml index 3c81717c..9c5095ff 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,7 +5,7 @@ volumes: services: mongo: - image: mongo:8.0.4 + image: mongo:8.0.12 restart: always volumes: - comify-mongo-data:/data/db @@ -31,7 +31,7 @@ services: ME_CONFIG_MONGODB_URL: "mongodb://${MONGODB_ROOT_USERNAME}:${MONGODB_ROOT_PASSWORD}@mongo:27017/" minio: - image: minio/minio:RELEASE.2025-02-07T23-21-09Z + image: minio/minio:RELEASE.2025-07-23T15-54-02Z restart: always volumes: - comify-minio-data:/data @@ -39,8 +39,8 @@ services: - "${MINIO_PORT_NUMBER:-9000}:9000" - "${MINIO_ADMIN_PORT_NUMBER:-9001}:9001" environment: - MINIO_ACCESS_KEY: ${MINIO_ACCESS_KEY} - MINIO_SECRET_KEY: ${MINIO_SECRET_KEY} + MINIO_ROOT_USER: ${MINIO_ROOT_USER} + MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD} command: server --console-address ":9001" /data keycloak: diff --git a/example.env b/example.env index 23b2eca3..e47e37b8 100644 --- a/example.env +++ b/example.env @@ -19,8 +19,8 @@ FILE_STORE_IMPLEMENTATION="minio" MINIO_END_POINT="localhost" MINIO_PORT_NUMBER=9000 MINIO_USE_SSL=false -MINIO_ACCESS_KEY="development" -MINIO_SECRET_KEY="development" +MINIO_ROOT_USER="development" +MINIO_ROOT_PASSWORD="development" # AUTHENTICATION (openid) AUTHENTICATION_CLIENT_PATH="/identify" diff --git a/services/repository.json b/services/repository.json index 71017f55..2c644ad1 100644 --- a/services/repository.json +++ b/services/repository.json @@ -3,6 +3,6 @@ "repository": { "serveIndexOnNotFound": true, - "assets": ["index.html", "main.js", "assets/**/*", "webui/**/*", "registerSW.js", "sw.js", "workbox-*.js", "manifest.webmanifest" ] + "assets": ["index.html", "assets/**/*", "webui/**/*", "registerSW.js", "sw.js", "workbox-*.js", "manifest.webmanifest" ] } } \ No newline at end of file diff --git a/services/standalone.json b/services/standalone.json index e93fad1f..d34881cd 100644 --- a/services/standalone.json +++ b/services/standalone.json @@ -22,6 +22,6 @@ "segments": ["bff", "notification", "reads", "writes"], "serveIndexOnNotFound": true, - "assets": ["index.html", "main.js", "assets/**/*", "webui/**/*", "registerSW.js", "sw.js", "workbox-*.js", "manifest.webmanifest" ] + "assets": ["index.html", "assets/**/*", "webui/**/*", "registerSW.js", "sw.js", "workbox-*.js", "manifest.webmanifest" ] } } \ No newline at end of file diff --git a/src/integrations/filestore/implementations/minio/create.ts b/src/integrations/filestore/implementations/minio/create.ts index a81f1afa..ad7e2b7c 100644 --- a/src/integrations/filestore/implementations/minio/create.ts +++ b/src/integrations/filestore/implementations/minio/create.ts @@ -6,8 +6,8 @@ export default function create(): MinioFS const endPoint = process.env.MINIO_END_POINT ?? 'undefined'; const port = Number(process.env.MINIO_PORT_NUMBER ?? 9000); const useSSL = process.env.MINIO_USE_SSL === 'true'; - const accessKey = process.env.MINIO_ACCESS_KEY ?? 'undefined'; - const secretKey = process.env.MINIO_SECRET_KEY ?? 'undefined'; + const accessKey = process.env.MINIO_ROOT_USER ?? 'undefined'; + const secretKey = process.env.MINIO_ROOT_PASSWORD ?? 'undefined'; return new MinioFS({ endPoint, port, useSSL, accessKey, secretKey }); }