Skip to content

Commit

Permalink
doc(docker): add comments for minio disk full issue
Browse files Browse the repository at this point in the history
  • Loading branch information
KeXiangWang committed Dec 1, 2023
1 parent 67c2d70 commit 7cbed41
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 macOS Hypervisor. All the data, including logs, images, volumes, and so on, for docker on Mac is stored in this hypervisor. So when this message emerges, simply cleaning up the unused container or image in the hypervisor can help mitigate. You can also increase capacity by clicking the Docker Desktop icon in the menu bar, then clicking Preferences > Resources > `Increase Disk image size`.

0 comments on commit 7cbed41

Please sign in to comment.