Skip to content

Commit 7c580d2

Browse files
committed
fix host uid
1 parent 4cf592f commit 7c580d2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/development.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: flake8 datajoint --count --select=E9,F63,F7,F82 --show-source --statistics
3838
- name: Run primary tests
3939
env:
40-
UID: "1001"
40+
HOST_UID: "1001"
4141
GID: "121"
4242
PY_VER: ${{matrix.py_ver}}
4343
MYSQL_VER: ${{matrix.mysql_ver}}

LNX-docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ services:
8282
# jupyter notebook
8383
# ports:
8484
# - "8888:8888"
85-
user: ${UID}:${GID}
85+
user: ${HOST_UID}:anaconda
8686
volumes:
8787
- .:/src
8888
- /tmp/.X11-unix:/tmp/.X11-unix:rw

local-docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ services:
103103
ports:
104104
- "8888:8888"
105105
- "5678:5678"
106-
user: ${UID}:${GID}
106+
user: ${HOST_UID}:anaconda
107107
volumes:
108108
- .:/src
109109
- /tmp/.X11-unix:/tmp/.X11-unix:rw

0 commit comments

Comments
 (0)