blob: 102d46c116304d9d8ae3e78ea00eab1b3b27c289 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
if [ "${1}" = "init" ]; then
service apache2 start
/docker-init.py
# TODO: https://git-scm.com/docs/gitweb#_generating_projects_list_using_gitweb
tail -f /dev/null
else
exec "$@"
fi
|