From ef20645447782c2984e3af9cb0608db6391ff98c Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 12 Aug 2024 10:01:22 +0300 Subject: [PATCH] docker: Fix reading USER_UID/GID (closes #331) --- start-docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start-docker.sh b/start-docker.sh index ffdcb4148..624db0dd2 100755 --- a/start-docker.sh +++ b/start-docker.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash [[ ! -z "${USER_UID}" ]] && usermod -u ${USER_UID} node || echo "No USER_UID specified, leaving 1000" [[ ! -z "${USER_GID}" ]] && groupmod -og ${USER_GID} node || echo "No USER_GID specified, leaving 1000"