aboutsummaryrefslogtreecommitdiffstats
path: root/patchwork/docker-entrypoint.sh
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2022-07-06 13:04:29 +0200
committerOliver Smith <osmith@sysmocom.de>2022-07-06 13:55:32 +0200
commit601df58a36f905342baba636483f96b37184d9e9 (patch)
tree0f3feaf8abd9d4384db79f619d26f1ca1ea8103a /patchwork/docker-entrypoint.sh
parent38f7fcb265940aaa82478b3377bc08424c43cd5b (diff)
Remove several unused containers
* alpine-*: looks like they were never used * debian-{jessie,stretch}-*: EOL * debian9-repo-install-test: EOL * gitolite: never used? / upstream container last updated 3 years ago * osmo-gerrit-libosmo: unused example from 2017, based on jessie * patchwork: looks like never used, ancient version * public-inbox: added in 2018 for playing around, apparently unused * tmp: unfinished and unused * ubuntu-zesty-build: was added for testing ubuntu 17.04, unused Related: OS#5601 Change-Id: Ic09046379ddff049629bb66850ead7ba479c4450
Diffstat (limited to 'patchwork/docker-entrypoint.sh')
-rwxr-xr-xpatchwork/docker-entrypoint.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/patchwork/docker-entrypoint.sh b/patchwork/docker-entrypoint.sh
deleted file mode 100755
index 63ba941..0000000
--- a/patchwork/docker-entrypoint.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-set -e
-set -x
-
-python3 manage.py check
-python3 manage.py migrate
-python3 manage.py collectstatic --noinput
-python3 manage.py loaddata default_tags default_states
-python3 manage.py runserver 0.0.0.0:8000