You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/Installing_Building_TESP.rst
+38Lines changed: 38 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -322,3 +322,41 @@ If that still fails, try renormalizing the tesp repository.
322
322
$ git ls-files -z | xargs -0 rm
323
323
$ git checkout .
324
324
325
+
Docker file access with Linux as the host
326
+
.........................................
327
+
328
+
TESP uses linux group permissions to share files between linux host and docker container.
329
+
The 'runner:x:9002' group has been added to the docker image for this purpose.
330
+
These instructions are to be run on your host machine.
331
+
For the text below, substitute your login name for 'userName', share group name for 'groupName'.
332
+
333
+
To find out what 'groupName' that might have been used for the id 9002, issue the following command:
334
+
335
+
.. code-block:: shell-session
336
+
$ cat /etc/group | grep 9002
337
+
338
+
If the group 'groupName:x:9002:...' is found, we need find out what groups your login has, issue the follow command:
339
+
340
+
.. code-block:: shell-session
341
+
$ groups
342
+
343
+
If the 'groupName' is not a member of the group list, add the 'groupName' to the group list from '$ groups' command above to the user by modifying the 'userName':
0 commit comments