We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6dbf94c commit 04a6e0bCopy full SHA for 04a6e0b
2 files changed
ath-container.sh
@@ -13,11 +13,11 @@ java_version="${java_version:-17}"
13
# high chance of uid / group already existing in the container
14
# known to happen on macOS
15
if ((uid < 1000)); then
16
- uid=1000
+ uid=1001
17
fi
18
19
if ((gid < 1000)); then
20
- gid=1000
+ gid=1001
21
22
23
docker build \
src/main/resources/ath-container/Dockerfile
@@ -77,8 +77,8 @@ COPY set-java.sh /usr/bin
77
COPY vnc.sh /usr/bin
78
79
# Allow injecting uid and git to match directory ownership
80
-ARG uid=1000
81
-ARG gid=1000
+ARG uid=1001
+ARG gid=1001
82
83
EXPOSE 5942
84
0 commit comments