summaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
Diffstat (limited to 'docker')
-rw-r--r--docker/entrypoint.sh12
-rw-r--r--docker/update.cron1
2 files changed, 0 insertions, 13 deletions
diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh
deleted file mode 100644
index 1eae53073a..0000000000
--- a/docker/entrypoint.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/bash
-echo -n "Launch args: "
-echo "$@"
-
-if [ "$1" == "update" ]; then
- cd /app || exit 1
- exec su user -c "bash ./update.sh"
-elif [ "$1" == "cron" ]; then
- exec crond -f
-else
- exec "$@"
-fi
diff --git a/docker/update.cron b/docker/update.cron
deleted file mode 100644
index 3547d5e863..0000000000
--- a/docker/update.cron
+++ /dev/null
@@ -1 +0,0 @@
-0 * * * * PATH=$PATH:/usr/bin:/usr/local/bin /usr/local/bin/entrypoint update > /proc/1/fd/1 2>/proc/1/fd/2