Skip to content

Commit 2a43ed7

Browse files
authored
Merge pull request #92 from ccdc-opensource/ccdc-account-docker-group
NO_JIRA add ccdc account to docker group
2 parents 0c2fbf6 + 7f15166 commit 2a43ed7

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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.
120120
We 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
128128
sudo 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

0 commit comments

Comments
 (0)