Skip to content

Commit

Permalink
remove sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamIT authored Aug 29, 2023
1 parent 59a40e5 commit 51cd9a1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/install_docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,17 @@ echo "CERT_PRIV_KEY=$(sudo base64 -w 0 /path/to/priv/key)" >> .env
Run the below command to start the environment:

```bash
sudo docker compose up -d
docker compose up -d
```

Removing the -d will start the containers in the foreground and is useful for debugging.

If you get a error saying you don't have permission you can add yourself to the docker group with:
```
sudo usermod -aG docker [user]
```
You may need to log out and back in for it to take full effect.

### Login

Navigate to `https://rmm.example.com` and login with the username/password you created during install.
Expand Down

0 comments on commit 51cd9a1

Please sign in to comment.