Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
Raspberry: Add notes about adding user to "docker" group
Browse files Browse the repository at this point in the history
  • Loading branch information
ledermann committed Jan 31, 2024
1 parent 7c54e46 commit d439340
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion guide/external-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,20 @@ If Docker is not installed, install it:
```console
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
sudo usermod -aG docker Pi
```

Don't forget to add your user to the `docker` group, so you don't need to use `sudo` for every Docker command.

```console
sudo groupadd docker
sudo usermod -aG docker $USER
```

Log out and log back in so that your group membership is re-evaluated.

Details:
https://docs.docker.com/engine/install/linux-postinstall/

We don't need Docker Compose on the Raspi, because just one container will be started.

### b) Install and run SENEC Collector
Expand Down

0 comments on commit d439340

Please sign in to comment.