Skip to content

Commit

Permalink
Fix userid to 101 for theia user
Browse files Browse the repository at this point in the history
  • Loading branch information
iyannsch committed Jun 26, 2024
1 parent 5107c5b commit 3dec07c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion images/c/ToolDockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ COPY --from=plugin-image /home/theia/plugins /home/theia/plugins
# Create theia user and directories
# Application will be copied to /home/theia
# Default workspace is located at /home/project
RUN adduser --system --group theia
RUN adduser --system --group theia --uid 101
RUN chmod g+rw /home && \
mkdir -p /home/project && \
chown -R theia:theia /home/theia && \
Expand Down
2 changes: 1 addition & 1 deletion images/haskell/ToolDockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ COPY --from=plugin-image /home/theia/plugins /home/theia/plugins
# Create theia user and directories
# Application will be copied to /home/theia
# Default workspace is located at /home/project
RUN adduser --system --group theia
RUN adduser --system --group theia --uid 101
RUN chmod g+rw /home && \
mkdir -p /home/project && \
chown -R theia:theia /home/theia && \
Expand Down
2 changes: 1 addition & 1 deletion images/java-17/ToolDockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ COPY --from=plugin-image /home/theia/plugins /home/theia/plugins
# Create theia user and directories
# Application will be copied to /home/theia
# Default workspace is located at /home/project
RUN adduser --system --group theia
RUN adduser --system --group theia --uid 101
RUN chmod g+rw /home && \
mkdir -p /home/project && \
chown -R theia:theia /home/theia && \
Expand Down
2 changes: 1 addition & 1 deletion images/ocaml/ToolDockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ COPY --from=plugin-image /home/theia/plugins /home/theia/plugins
# Create theia user and directories
# Application will be copied to /home/theia
# Default workspace is located at /home/project
RUN adduser --system --group theia
RUN adduser --system --group theia --uid 101
RUN chmod g+rw /home && \
mkdir -p /home/project && \
chown -R theia:theia /home/theia && \
Expand Down
2 changes: 1 addition & 1 deletion images/python/ToolDockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ COPY --from=plugin-image /home/theia/plugins /home/theia/plugins
# Create theia user and directories
# Application will be copied to /home/theia
# Default workspace is located at /home/project
RUN adduser --system --group theia
RUN adduser --system --group theia --uid 101
RUN chmod g+rw /home && \
mkdir -p /home/project && \
chown -R theia:theia /home/theia && \
Expand Down
2 changes: 1 addition & 1 deletion images/swift/ToolDockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ COPY --from=plugin-image /home/theia/plugins /home/theia/plugins
# Create theia user and directories
# Application will be copied to /home/theia
# Default workspace is located at /home/project
RUN adduser --system --group theia
RUN adduser --system --group theia --uid 101
RUN chmod g+rw /home && \
mkdir -p /home/project && \
chown -R theia:theia /home/theia && \
Expand Down

0 comments on commit 3dec07c

Please sign in to comment.