Skip to content

Commit

Permalink
adds storage user
Browse files Browse the repository at this point in the history
  • Loading branch information
chaduhduh committed Aug 28, 2024
1 parent d90e60f commit 7e6cabf
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ jobs:
- name: Create .env file
run: cp .env.example .env

- name: Create storage user
run: |
groupadd --force -g "1001" "example_group" && \
useradd --non-unique -m -u "1001" -g "example_group" "example_owner"
- name: Update storage permissions
run: chown -R example_owner:example_group ./fixtures/vosdata/

- name: Build VOSpace image
run: docker compose -f compose.dev.yml up -d --build

Expand Down

0 comments on commit 7e6cabf

Please sign in to comment.