1
0
docker-ttrss/entrypoint.sh
Jonathan Piron c2f8078a05 Fix symlink creations
It was failing at container restart as they already exist.
2017-01-23 08:12:11 +01:00

20 lines
522 B
Bash
Executable File

#!/bin/bash
set -e
# remove trailing / if any.
SELF_URL_PATH=${SELF_URL_PATH/%\//}
# extract the root path from SELF_URL_PATH (i.e http://domain.tld/<root_path>).
ROOT_PATH=${SELF_URL_PATH/#http*\:\/\/*\//}
if [ "${ROOT_PATH}" == "${SELF_URL_PATH}" ]; then
# no root path in SELF_URL_PATH.
mkdir -p /var/tmp
ln -sf "/var/www" "/var/tmp/www"
else
mkdir -p /var/tmp/www
ln -sf "/var/www" "/var/tmp/www/${ROOT_PATH}"
fi
php /configure-db.php
exec supervisord -c /etc/supervisor/conf.d/supervisord.conf