Skip to content

Commit 37eb014

Browse files
- Manual testing works.
1 parent 6805a2c commit 37eb014

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1138,6 +1138,8 @@ jobs:
11381138
echo "BUILDMAJORVERSION=$BUILDMAJORVERSION"
11391139
echo "BUILDMINORVERSION=$BUILDMINORVERSION"
11401140
echo "BUILDPATCHVERSION=$BUILDPATCHVERSION"
1141+
echo "UID=${UID}"
1142+
echo "GID=${GID}"
11411143
} >> "${GITHUB_ENV}"
11421144
11431145
- name: Generate rewritten registry for simulations

docker-compose-persist-postgres.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ services:
44
stackqlsrv:
55
image: "${STACKQL_IMAGE_NAME:-stackql/stackql}"
66
build:
7+
user: "${UID}:${GID}"
78
context: .
89
cache_from:
910
- "${STACKQL_IMAGE_NAME:-stackql/stackql}"
@@ -13,8 +14,6 @@ services:
1314
- BUILDMAJORVERSION=${BUILDMAJORVERSION:-1}
1415
- BUILDMINORVERSION=${BUILDMINORVERSION:-1}
1516
- BUILDPATCHVERSION=${BUILDPATCHVERSION:-1}
16-
- UID=${UID}
17-
- GID=${GID}
1817
command:
1918
- bash
2019
- -c

docker-compose.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ version: "3.9"
22

33
services:
44
stackqlsrv:
5+
user: "${UID}:${GID}"
56
image: "${STACKQL_IMAGE_NAME:-stackql/stackql}"
67
build:
78
context: .
@@ -13,8 +14,6 @@ services:
1314
- BUILDMAJORVERSION=${BUILDMAJORVERSION:-1}
1415
- BUILDMINORVERSION=${BUILDMINORVERSION:-1}
1516
- BUILDPATCHVERSION=${BUILDPATCHVERSION:-1}
16-
- UID=${UID}
17-
- GID=${GID}
1817
command:
1918
- bash
2019
- -c

0 commit comments

Comments
 (0)