Skip to content

Commit 04a6e0b

Browse files
authored
Revert UID/GID changes from #1645 (#1651)
1 parent 6dbf94c commit 04a6e0b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

ath-container.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ java_version="${java_version:-17}"
1313
# high chance of uid / group already existing in the container
1414
# known to happen on macOS
1515
if ((uid < 1000)); then
16-
uid=1000
16+
uid=1001
1717
fi
1818

1919
if ((gid < 1000)); then
20-
gid=1000
20+
gid=1001
2121
fi
2222

2323
docker build \

src/main/resources/ath-container/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ COPY set-java.sh /usr/bin
7777
COPY vnc.sh /usr/bin
7878

7979
# Allow injecting uid and git to match directory ownership
80-
ARG uid=1000
81-
ARG gid=1000
80+
ARG uid=1001
81+
ARG gid=1001
8282

8383
EXPOSE 5942
8484

0 commit comments

Comments
 (0)