mirror of
https://github.com/sickcodes/Docker-OSX.git
synced 2024-11-22 18:29:58 +08:00
Add docker: unknown server OS: .
See 'docker run --help'.
This commit is contained in:
parent
bed57dc73e
commit
022b7b5864
36
README.md
36
README.md
@ -443,6 +443,42 @@ More specific/advanced troubleshooting questions and answers may be found in [Mo
|
||||
|
||||
See [initial setup](#initial-setup).
|
||||
|
||||
|
||||
|
||||
#### Docker Unknown Server OS error
|
||||
|
||||
```console
|
||||
docker: unknown server OS: .
|
||||
See 'docker run --help'.
|
||||
```
|
||||
|
||||
This means your docker daemon is not running.
|
||||
|
||||
`pgrep dockerd` should return nothing
|
||||
|
||||
Therefore, you have a few choices.
|
||||
|
||||
`sudo dockerd` for foreground Docker usage. I use this.
|
||||
|
||||
Or
|
||||
|
||||
`sudo systemctl --start dockerd` to start dockerd this now.
|
||||
|
||||
Or
|
||||
|
||||
`sudo systemctl --enable --now dockerd` for start dockerd on every reboot, and now.
|
||||
|
||||
|
||||
#### Use more CPU Cores/SMP
|
||||
|
||||
This will use all available cores; adjust accordingly to the day of the week:
|
||||
|
||||
```
|
||||
-e CPU_STRING=$(nproc) \
|
||||
```
|
||||
|
||||
This will use `-smp $(nproc)`
|
||||
|
||||
#### Confirm your user is part of the the Docker group, KVM group, libvirt group
|
||||
|
||||
If you use `sudo dockerd` or dockerd is controlled by systemd/systemctl, then you must be in the Docker group.
|
||||
|
Loading…
Reference in New Issue
Block a user