diff --git a/.github/workflows/impress.yml b/.github/workflows/impress.yml index 9aae0cd28..bb5ec50b8 100644 --- a/.github/workflows/impress.yml +++ b/.github/workflows/impress.yml @@ -166,13 +166,13 @@ jobs: - name: Start MinIO run: | - docker pull minio/minio + docker pull quay.io/minio/minio docker run -d --name minio \ -p 9000:9000 \ -e "MINIO_ACCESS_KEY=impress" \ -e "MINIO_SECRET_KEY=password" \ -v /data/media:/data \ - minio/minio server --console-address :9001 /data + quay.io/minio/minio server --console-address :9001 /data # Tool to wait for a service to be ready - name: Install Dockerize diff --git a/CHANGELOG.md b/CHANGELOG.md index 41f9fbfbe..4120dc535 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ and this project adheres to - 🐛(frontend) preserve page titles when adding an emoji #2586 - 🐛(frontend) hide the selection highlight on presenter images #2665 - 🐛(y-provider) prevent process crash on malformed websocket frames #2673 +- 🐛(docker) pull minio images from quay.io #2675 - ♿️(frontend) restore presenter focus trapping after share links #2533 ## [v5.6.1] - 2026-09-04 diff --git a/compose.yml b/compose.yml index 7d4e1422f..a46236001 100644 --- a/compose.yml +++ b/compose.yml @@ -26,7 +26,7 @@ services: minio: user: ${DOCKER_USER:-1000} - image: minio/minio + image: quay.io/minio/minio environment: - MINIO_ROOT_USER=impress - MINIO_ROOT_PASSWORD=password @@ -44,7 +44,7 @@ services: - ./data/media:/data createbuckets: - image: minio/mc + image: quay.io/minio/mc depends_on: minio: condition: service_healthy diff --git a/documentation/examples/compose/minio/compose.yaml b/documentation/examples/compose/minio/compose.yaml index 2ec8beb26..124b9ba4e 100644 --- a/documentation/examples/compose/minio/compose.yaml +++ b/documentation/examples/compose/minio/compose.yaml @@ -1,6 +1,6 @@ services: minio: - image: minio/minio + image: quay.io/minio/minio environment: - MINIO_ROOT_USER= - MINIO_ROOT_PASSWORD= diff --git a/documentation/examples/helm/minio.values.yaml b/documentation/examples/helm/minio.values.yaml index 60cc59512..f294f839a 100644 --- a/documentation/examples/helm/minio.values.yaml +++ b/documentation/examples/helm/minio.values.yaml @@ -1,6 +1,6 @@ minio: enabled: true - image: minio/minio + image: quay.io/minio/minio name: minio # serviceNameOverride: docs-minio ingress: diff --git a/src/helm/env.d/dev/values.dev-backend.yaml.gotmpl b/src/helm/env.d/dev/values.dev-backend.yaml.gotmpl index 76ab8badd..deaabb964 100644 --- a/src/helm/env.d/dev/values.dev-backend.yaml.gotmpl +++ b/src/helm/env.d/dev/values.dev-backend.yaml.gotmpl @@ -15,7 +15,7 @@ redis: password: pass minio: enabled: true - image: minio/minio + image: quay.io/minio/minio name: minio ingress: enabled: true @@ -51,9 +51,8 @@ keycloak: database: keycloak size: 1Gi image: postgres:16-alpine - realm: + realm: name: docs username: docs password: docs email: docs@example.com - diff --git a/src/helm/env.d/feature/values.dev-backend.yaml.gotmpl b/src/helm/env.d/feature/values.dev-backend.yaml.gotmpl index 242c17d47..2b48547a4 100644 --- a/src/helm/env.d/feature/values.dev-backend.yaml.gotmpl +++ b/src/helm/env.d/feature/values.dev-backend.yaml.gotmpl @@ -15,7 +15,7 @@ redis: password: pass minio: enabled: true - image: minio/minio + image: quay.io/minio/minio name: minio ingress: enabled: true @@ -53,9 +53,8 @@ keycloak: database: keycloak size: 5Gi image: postgres:16-alpine - realm: + realm: name: docs username: docs password: docs email: docs@example.com -