Skip to content

Commit

Permalink
entrypoint: do not force 14002 console port (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
elek committed Sep 14, 2023
1 parent 21b0028 commit a6d2abe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker/entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ if [ "${AUTO_UPDATE:-}" != "true" ]; then
AUTO_UPDATE="false"
fi

SNO_RUN_PARAMS="${RUN_PARAMS} --console.address=:14002"
: ${STORJ_CONSOLE_ADDRESS:=0.0.0.0:14002}
SNO_RUN_PARAMS="${RUN_PARAMS}"
if [ -n "${STORAGE:-}" ]; then
SNO_RUN_PARAMS="${SNO_RUN_PARAMS} --storage.allocated-disk-space=${STORAGE}"
fi
Expand Down

0 comments on commit a6d2abe

Please sign in to comment.