File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -19,3 +19,24 @@ ssh-add ~/.ssh/id_rsa
19
19
20
20
Where ` id_rsa ` is the name of your private key file you use for connecting
21
21
to GitHub.
22
+
23
+ ## Cannot connect to the Docker daemon
24
+
25
+ Solution 1: start the daemon manually with ` systemctl start docker ` ,
26
+ if the daemon was already running, add your user to the ` docker ` group, then
27
+ log out and in for the change to be effective.
28
+
29
+ Solution 2: use rootless docker, the way to setup this depends on your
30
+ distribution, in some cases, it's a matter of installing a variant package
31
+ like ` docker-rootless ` .
32
+
33
+ ## Docker daemon errors initializing graphdriver
34
+
35
+ Solution: The most likely reason is that you are using a filesystem like ` zfs `
36
+ or ` btrfs ` which requires a special storage driver, click
37
+ [ link] ( https://docs.docker.com/engine/storage/drivers/select-storage-driver/ )
38
+ for more information
39
+
40
+ ## Error processing a compose file
41
+
42
+ Solution: make sure your docker compose is up to date
You can’t perform that action at this time.
0 commit comments