]> git.immae.eu Git - github/bastienwirtz/homer.git/blob - entrypoint.sh
Bump browserslist from 4.16.4 to 4.16.6
[github/bastienwirtz/homer.git] / entrypoint.sh
1 #!/bin/sh
2
3 # Ensure default assets are present.
4 while true; do echo n; done | cp -Ri /www/default-assets/* /www/assets/ &> /dev/null
5
6 # Ensure compatibility with previous version (config.yml was in the root directory)
7 if [ -f "/www/config.yml" ]; then
8 yes n | cp -i /www/config.yml /www/assets/ &> /dev/null
9 fi
10
11 # Install default config if no one is available.
12 yes n | cp -i /www/default-assets/config.yml.dist /www/assets/config.yml &> /dev/null
13
14 chown -R $UID:$GID /www/assets
15 exec su-exec $UID:$GID darkhttpd /www/ --no-listing --port "$PORT"