Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/wiki/Service-Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ queue:

```yaml
minio:
image: minio/minio:latest
image: quay.io/minio/minio:latest
command: server /data --console-address ":9001"
environment:
MINIO_ROOT_USER: ${MINIO_ROOT_USER:-minioadmin}
Expand Down
2 changes: 1 addition & 1 deletion .github/wiki/guides/first-time-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ Building nself project...
✓ postgres:15-alpine
✓ redis:7-alpine
↻ hasura/graphql-engine:latest (45%)
⏳ minio/minio:latest
quay.io/minio/minio:latest
⏳ nginx:alpine
...
```
Expand Down
2 changes: 1 addition & 1 deletion src/app/api/nself/build-simple/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ async function generateDockerCompose(config: any): Promise<string> {
// Storage/MinIO (if enabled)
if (config.STORAGE_ENABLED === 'true' || config.MINIO_ENABLED === 'true') {
services.push(` minio:
image: minio/minio:latest
image: quay.io/minio/minio:latest
ports:
- "9000:9000"
- "9001:9001"
Expand Down
2 changes: 1 addition & 1 deletion src/app/start/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ function getServiceInfo(name: string): {
description: 'MinIO Object Storage',
details: [
'Container: minio',
'Image: minio/minio:latest',
'Image: quay.io/minio/minio:latest',
'Ports: 9000, 9001',
'S3-compatible storage',
],
Expand Down
Loading