Skip to content

Commit

Permalink
permissions debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
avdb13 committed Feb 14, 2024
1 parent 4c36726 commit 92e1e9d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@ jobs:
mkdir -p ./docker/synapse/media_store
cp ./crates/test/fixtures/synapse/* ./docker/synapse
- name: Check filesystem permissions
run: |
ls -la ./docker/synapse
echo $UID
echo $GID
- name: Run Docker Containers
run: |
docker compose up -d --build
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ services:

synapse:
image: 'ghcr.io/element-hq/synapse:v1.100.0'
user: '${UID:-1000}:${GID:-1000}'
user: '${UID}:${GID}'
ports:
- '8008:8008'
- '8448:8448'
Expand Down

0 comments on commit 92e1e9d

Please sign in to comment.