mirror of https://github.com/bastienwirtz/homer
18 lines
713 B
Bash
18 lines
713 B
Bash
#!/bin/sh
|
|
|
|
# Default assets & example configuration installation
|
|
if [[ "${INIT_ASSETS}" == "1" ]] && [[ ! -f "/www/assets/config.yml" ]]; then
|
|
echo "No configuration found, installing default config & assets"
|
|
if [[ -w "/www/assets/" ]];
|
|
then
|
|
while true; do echo n; done | cp -Ri /www/default-assets/* /www/assets/
|
|
yes n | cp -i /www/default-assets/config.yml.dist /www/assets/config.yml
|
|
else
|
|
echo "Assets directory not writable, skipping default config install.";
|
|
echo "Check assets directory permissions & docker user or skip default assets install by setting the INIT_ASSETS env var to 0."
|
|
fi
|
|
fi
|
|
|
|
echo "Starting webserver"
|
|
exec lighttpd -D -f /lighttpd.conf
|