summaryrefslogtreecommitdiffstats
path: root/adei-mini/files/docker-entrypoint.sh
blob: 6f0fa8869a436b7e156c2c7022322e276eb33ca0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/bash

set -e

mkdir -p /adei/{src,cfg,tmp,sys,log}

if ! whoami &> /dev/null; then
  if [ -w /etc/passwd ]; then
    echo "${USER_NAME:-default}:x:$(id -u):0:${USER_NAME:-default} user:${HOME}:/sbin/nologin" >> /etc/passwd
  fi
fi

echo "Running: $@"
exec "$@"