initial commit

This commit is contained in:
jaedle
2019-03-09 13:47:07 +01:00
commit b2b34b7113
10 changed files with 623 additions and 0 deletions

14
docker-entrypoint.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env sh
set -e
ONE_HOUR_DELAY=3600
while true
do
echo 'Starting to create mirrors'
node /app/src/index.js
echo 'Waiting...'
sleep "${ONE_HOUR_DELAY}"
done