Skip to content

Commit

Permalink
doc(docker): add comments for minio disk full issue (#13768)
Browse files Browse the repository at this point in the history
  • Loading branch information
KeXiangWang authored Dec 2, 2023
1 parent ab011eb commit 0b6184d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,13 @@ docker-compose down -v
```bash
./risedev compose
```

## Common Issues

Error message:
```
Error { code: "XMinioStorageFull", message: "Storage backend has reached its minimum free drive threshold. Please delete a few objects to proceed."
```

Solution:
This usually happens on MacOS with Docker Desktop. The Docker Deskup runs in the macOS Hypervisor. All the data, including logs, images, volumes, and so on, is stored in this hypervisor and the hypervisor has a default disk capacity limit. So when this message emerges, simply cleaning up the unused container or image can help mitigate. You can also increase capacity limit by clicking the Docker Desktop icon in the menu bar, then clicking Preferences > Resources > `Increase Disk image size`.

0 comments on commit 0b6184d

Please sign in to comment.