File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
Dockerfiles/base/data/docker-entrypoint.d Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 4
4
## Unreleased
5
5
6
6
7
+ ## Release 0.141
8
+
9
+ ### Fixed
10
+ - Fixed correct permission for ` /opt/nvm ` during startup
11
+
12
+
7
13
## Release 0.140
8
14
9
15
### Changed
Original file line number Diff line number Diff line change @@ -72,6 +72,9 @@ set_uid() {
72
72
if [ -d " /etc/supervisor/custom.d" ]; then
73
73
run " chown -R ${username} /etc/supervisor/custom.d" " ${debug} "
74
74
fi
75
+ if [ -d " /opt/nvm" ]; then
76
+ run " chown -R ${username} /opt/nvm" " ${debug} "
77
+ fi
75
78
fi
76
79
fi
77
80
}
@@ -122,6 +125,9 @@ set_gid() {
122
125
if [ -d " /etc/supervisor/custom.d" ]; then
123
126
run " chown -R :${groupname} /etc/supervisor/custom.d" " ${debug} "
124
127
fi
128
+ if [ -d " /opt/nvm" ]; then
129
+ run " chown -R :${groupname} /opt/nvm" " ${debug} "
130
+ fi
125
131
fi
126
132
fi
127
133
}
You can’t perform that action at this time.
0 commit comments