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/sogo/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
if [[ "${SKIP_SOGO}" =~ ^([yY][eE][sS]|[yY])+$ ]]; then
4
echo "SKIP_SOGO=y, skipping SOGo..."
5
sleep 365d
6
exit 0
7
fi
9
if [[ ! -z ${REDIS_SLAVEOF_IP} ]]; then
10
cp /etc/syslog-ng/syslog-ng-redis_slave.conf /etc/syslog-ng/syslog-ng.conf
11
fi
13
echo "$TZ" > /etc/timezone
15
# Run hooks
16
for file in /hooks/*; do
17
if [ -x "${file}" ]; then
18
echo "Running hook ${file}"
19
"${file}"
20
fi
21
done
23
exec "$@"