From 34a51282858971776564f3c12b96ed4eb9054c3c Mon Sep 17 00:00:00 2001 From: Eric Migicovsky Date: Thu, 26 Mar 2020 13:44:56 -0700 Subject: [PATCH] add docker run --- docker-run.sh | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 docker-run.sh diff --git a/docker-run.sh b/docker-run.sh new file mode 100644 index 0000000..058a3e4 --- /dev/null +++ b/docker-run.sh @@ -0,0 +1,38 @@ +#!/bin/sh -e + +if [ ! -f "$CONFIG_PATH" ]; then + echo 'No config found' + exit 1 +fi + +args="$@" + +if [ ! -f "$REGISTRATION_PATH" ]; then + echo 'No registration found, generating now' + args="-r" +fi + + +# if no --uid is supplied, prepare files to drop privileges +if [ "$(id -u)" = 0 ]; then + chown node:node /data + + if find *.db > /dev/null 2>&1; then + # make sure sqlite files are writeable + chown node:node *.db + fi + if find *.log.* > /dev/null 2>&1; then + # make sure log files are writeable + chown node:node *.log.* + fi + + su_exec='su-exec node:node' +else + su_exec='' +fi + +# $su_exec is used in case we have to drop the privileges +exec $su_exec /usr/local/bin/node '/opt/mx-puppet-skype/build/index.js' \ + -c "$CONFIG_PATH" \ + -f "$REGISTRATION_PATH" \ + $args