Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ If self-hosting the postgres server please follow the instructions at [Setting u

### CCDC User Account

Containers run as the account with numeric uid 1397 and you will need to create this account.
Containers run as the account with numeric uid 1397 and you will need to create this account and add it to the `docker` group.
We suggest giving it the username `ccdc`.

```sh
Expand All @@ -126,6 +126,10 @@ sudo adduser ccdc --uid=1397

# If you are upgrading from an older version to v4.0.0, ensure the user id is set to 1397
sudo usermod -u 1397 ccdc

# Create the docker group and add the CCDC user to it.
sudo groupadd docker
sudo usermod -aG docker ccdc
```

**The installer must be run from the `ccdc` account so that all file permissions are
Expand Down