Skip to content

Commit

Permalink
Expand troubleshooting section with docker related problems
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilioPeJu committed Sep 12, 2024
1 parent 99a58ff commit 0a2e4a3
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions docs/reference/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,24 @@ ssh-add ~/.ssh/id_rsa

Where `id_rsa` is the name of your private key file you use for connecting
to GitHub.

## Cannot connect to the Docker daemon

Solution 1: start the daemon manually with `systemctl start docker`,
if the daemon was already running, add your user to the `docker` group, then
log out and in for the change to be effective.

Solution 2: use rootless docker, the way to setup this depends on your
distribution, in some cases, it's a matter of installing a variant package
like `docker-rootless`.

## Docker daemon errors initializing graphdriver

Solution: The most likely reason is that you are using a filesystem like `zfs`
or `btrfs` which requires a special storage driver, click
[link](https://docs.docker.com/engine/storage/drivers/select-storage-driver/)
for more information

## Error starting processing a compose file

Solution: make sure your docker compose is up to date

0 comments on commit 0a2e4a3

Please sign in to comment.