deployment templates for lichen
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

entrypoint: install git-daemon for git-http-backend

+2 -2
+2 -2
docker-compose/entrypoint.sh
··· 4 4 # disable bubblewrap sandbox — not supported inside Docker 5 5 rm -f /usr/bin/bwrap 6 6 7 - # install bash for lichen shell feature 8 - apk add --no-cache bash > /dev/null 2>&1 || true 7 + # install bash (shell feature) and git-daemon (provides git-http-backend for clone/push) 8 + apk add --no-cache bash git-daemon > /dev/null 2>&1 || true 9 9 10 10 # set git identity for auto-commit 11 11 if command -v git > /dev/null 2>&1; then