1
0
mirror of https://github.com/teamserverless/k8s-on-raspbian.git synced 2024-10-05 18:30:51 +01:00

Update docker instructions

I closed #23 which didn't appear to be a bug, but for
completeness, it puts each instruction on its own line.

Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
This commit is contained in:
Alex Ellis (OpenFaaS Ltd) 2019-12-01 19:46:43 +00:00
parent cb74c04c4f
commit e35379486b

View File

@ -78,8 +78,13 @@ You may also need to make a reservation on your router's DHCP table so these add
This installs 17.12 or newer.
```
$ curl -sSL get.docker.com | sh && \
curl -sSL get.docker.com | sh
# Add current user to docker group:
sudo usermod pi -aG docker
# Refresh groups
newgrp docker
```