lib: fix ram usage due to bootstrap

bootstrap now exits (0) when all services are up, instead continuously running. This is combined with a simple bash script, which does this job instead.

This also adds /bootstrap.sh as docker ENTRYPOINT
This commit is contained in:
Jens Langhammer
2020-04-22 11:45:11 +02:00
parent c77f4204c0
commit aac7e6be90
3 changed files with 8 additions and 13 deletions

3
docker/bootstrap.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash -ex
/app/manage.py bootstrap
$@