Skip to content

Commit 9cd2177

Browse files
add github actions
1 parent e8bf245 commit 9cd2177

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ jobs:
2929
- name: Build containers
3030
env:
3131
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 }}
3237
run: |
3338
docker compose --env-file ./service/.env build --pull
3439
@@ -50,7 +55,7 @@ jobs:
5055
- name: Cleanup
5156
if: always()
5257
run: |
53-
docker compose --env-file ./service/.env down -v --remove-orphans
58+
docker compose --env-file ./service/.env down -v --remove-orphans
5459
5560
5661
# name: CI

0 commit comments

Comments
 (0)