File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ If self-hosting the postgres server please follow the instructions at [Setting u
116116
117117### CCDC User Account
118118
119- Containers run as the account with numeric uid 1397 and you will need to create this account.
119+ Containers run as the account with numeric uid 1397 and you will need to create this account and add it to the ` docker ` group .
120120We suggest giving it the username ` ccdc ` .
121121
122122``` sh
@@ -126,6 +126,10 @@ sudo adduser ccdc --uid=1397
126126
127127# If you are upgrading from an older version to v4.0.0, ensure the user id is set to 1397
128128sudo usermod -u 1397 ccdc
129+
130+ # Create the docker group and add the CCDC user to it.
131+ sudo groupadd docker
132+ sudo usermod -aG docker ccdc
129133```
130134
131135** The installer must be run from the ` ccdc ` account so that all file permissions are
You can’t perform that action at this time.
0 commit comments