We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8bf245 commit 9cd2177Copy full SHA for 9cd2177
.github/workflows/ci.yml
@@ -29,6 +29,11 @@ jobs:
29
- name: Build containers
30
env:
31
DOCKER_BUILDKIT: 1
32
+ HOST_UID: "1000"
33
+ HOST_GID: "1000"
34
+ DISPLAY: ":1"
35
+ HOST_USERNAME: ${{ secrets.HOST_USERNAME }}
36
+ HOST_GROUPNAME: ${{ secrets.HOST_GROUPNAME }}
37
run: |
38
docker compose --env-file ./service/.env build --pull
39
@@ -50,7 +55,7 @@ jobs:
50
55
- name: Cleanup
51
56
if: always()
52
57
53
- docker compose --env-file ./service/.env down -v --remove-orphans
58
+ docker compose --env-file ./service/.env down -v --remove-orphans
54
59
60
61
# name: CI
0 commit comments