Skip to content

Commit

Permalink
updated to fix the container user in mounted volume
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielciobotaru77 committed Dec 21, 2022
1 parent 30c17c8 commit daa53af
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@ Community Edition of the Matatika Data Platform

```
git clone https://github.com/Matatika/matatika-ce
cd matatika-ce
export userID=$(id -u); export groupID=$(id -g)
docker-compose up
```

In order to persist the userID and groupID variables, please add those to your .bashrc profile.
To always be up to date with our latest changes, make sure that you run git pull to update your code from matatika-ce repository.

2. Register, Login and create workspace

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.7'

services:
catalog:
user: root
user: $userID:$groupID
image: matatika/catalog
ports:
- '8080:8080'
Expand Down

0 comments on commit daa53af

Please sign in to comment.