We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36d6043 commit f9402f7Copy full SHA for f9402f7
.github/workflows/test-unit.yml
@@ -7,7 +7,7 @@ jobs:
7
- uses: actions/checkout@v4
8
- name: compose up
9
run: |-
10
- docker compose -f docker-compose.unit.yml up -d --wait --build
+ UID="$(id -u)" GID="$(id -g)" docker compose -f docker-compose.unit.yml up -d --wait --build
11
- name: show logs
12
if: failure()
13
.github/workflows/test.yml
- docker compose up -d --wait --build
+ UID="$(id -u)" GID="$(id -g)" docker compose up -d --wait --build
0 commit comments