1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 00:08:49 +00:00
dockerfiles/ot-recorder/docker-entrypoint.sh
2017-05-22 22:02:52 +08:00

14 lines
284 B
Bash
Executable File

#!/bin/sh
set -xe
if ! [ -d $OTR_STORAGEDIR/last ]
then
echo "initializing ..."
mkdir -p $OTR_STORAGEDIR/last
chown -R owntracks:owntracks $OTR_STORAGEDIR
ot-recorder --initialize
fi
exec ot-recorder --http-host $OTR_HTTPHOST --http-port $OTR_HTTPPORT $OTR_OPTIONS