We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ed643c commit 24a3332Copy full SHA for 24a3332
bin/nge
@@ -207,17 +207,17 @@ fi
207
function app_crun() {
208
if [ $ONCE == "no" ]; then
209
if [ -z "$NGE_USER" ]; then
210
- compose exec -it --user=$NGE_USER $APP_SERVICE $@
211
- else
212
echo "${YELLOW}NGE_USER not set. Running with default user.${NC}" >&2
213
compose exec -it $APP_SERVICE $@
+ else
+ compose exec -it --user=$NGE_USER $APP_SERVICE $@
214
fi
215
else
216
217
- compose run --rm --user=$NGE_USER $APP_SERVICE $@
218
219
220
compose run --rm $APP_SERVICE $@
+ compose run --rm --user=$NGE_USER $APP_SERVICE $@
221
222
223
}
0 commit comments