public
nobgit
read
NobMail
Based on mailcow: dockerized
Languages
Repository composition by tracked source files.
PHP
49%
JavaScript
35%
HTML
9%
CSS
4%
Shell
2%
Python
1%
Lua
0%
Perl
0%
Ruby
0%
SCSS
0%
Create file
Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git
Trace
data/Dockerfiles/unbound/docker-entrypoint.sh
Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.
Author
Date
Commit
Line
Code
1
#!/bin/bash
3
echo "Setting console permissions..."
4
chown root:tty /dev/console
5
chmod g+rw /dev/console
6
echo "Receiving anchor key..."
7
/usr/sbin/unbound-anchor -a /etc/unbound/trusted-key.key
8
echo "Receiving root hints..."
9
curl -#o /etc/unbound/root.hints https://www.internic.net/domain/named.cache
10
/usr/sbin/unbound-control-setup
12
# Run hooks
13
for file in /hooks/*; do
14
if [ -x "${file}" ]; then
15
echo "Running hook ${file}"
16
"${file}"
17
fi
18
done
20
exec "$@"