coreos-home-server/service/hugo/container/run-hugo
Alex Palaistras 0493a7fbfa hugo: Move to multi-stage container build
As with other container definitions, this helps make layers more
cacheable both between containers and in version updates.
2024-01-02 16:11:26 +00:00

24 lines
703 B
Bash
Executable File

#!/bin/sh
set -eu
# Generate host keys if none were found.
for t in rsa ecdsa ed25519; do
if test ! -f /etc/ssh/keys/ssh_host_${t}_key; then
ssh-keygen -q -t $t -f /etc/ssh/keys/ssh_host_${t}_key -C '' -N '' > /dev/null
fi
echo "Host key type '$t' for SSH authentication:"
cat /etc/ssh/keys/ssh_host_${t}_key.pub
done
# Create configuration file from collected templates.
envsubst < /etc/hugo/hooks.yaml.template > /etc/hugo/hooks.yaml
# Correct permissions where needed.
chown hugo:hugo /etc/ssh/keys/ssh_host_*
chown -R hugo:hugo /build
# Run webhook listener for configured hooks.
exec gosu /usr/bin/hugo /usr/bin/webhook -verbose -port 8080 -hooks /etc/hugo/hooks.yaml