1
0
mirror of https://github.com/TeamPiped/Piped.git synced 2024-12-13 05:40:28 +05:30
Piped/docker/entrypoint.sh

10 lines
204 B
Bash
Raw Permalink Normal View History

#!/bin/sh
if [ -z "$BACKEND_HOSTNAME" ]; then
echo "BACKEND_HOSTNAME not set"
exit 1
fi
sed -i s/pipedapi.kavin.rocks/"$BACKEND_HOSTNAME"/g /usr/share/nginx/html/assets/*
nginx -g "daemon off;"