summaryrefslogtreecommitdiff
path: root/docker/entrypoint.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docker/entrypoint.sh')
-rw-r--r--docker/entrypoint.sh12
1 files changed, 0 insertions, 12 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