Browse Source

Merge pull request #2605 from 0rax/develop

Add the ability to run crond inside the Docker container
for-closed-social
Unknwon 8 years ago
parent
commit
1fa4fe706a
3 changed files with 18 additions and 0 deletions
  1. +0
    -0
     
  2. +9
    -0
      docker/s6/crond/run
  3. +9
    -0
      docker/start.sh

+ 0
- 0
View File


+ 9
- 0
docker/s6/crond/run View File

@ -0,0 +1,9 @@
#!/bin/sh
# Crontabs are located by default in /var/spool/cron/crontabs/
# The default configuration is also calling all the scripts in /etc/periodic/${period}
if test -f ./setup; then
source ./setup
fi
exec gosu root /usr/sbin/crond -fS

+ 9
- 0
docker/start.sh View File

@ -48,6 +48,15 @@ else
create_socat_links
fi
CROND=$(echo "$RUN_CROND" | tr '[:upper:]' '[:lower:]')
if [ "$CROND" = "true" -o "$CROND" = "1" ]; then
echo "init:crond | Cron Daemon (crond) will be run as requested by s6" 1>&2
rm -f /app/gogs/docker/s6/crond/down
else
# Tell s6 not to run the crond service
touch /app/gogs/docker/s6/crond/down
fi
# Exec CMD or S6 by default if nothing present
if [ $# -gt 0 ];then
exec "$@"

Loading…
Cancel
Save