From 1d36335179329bb0d0b89caca64bc7a18750004d Mon Sep 17 00:00:00 2001 From: Taha Yassine Kraiem Date: Fri, 23 Jul 2021 21:55:03 +0200 Subject: [PATCH] feat(backend-docker): start all services in the background (awk cannot handle log streaming) --- backend/entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/entrypoint.sh b/backend/entrypoint.sh index d0eda9d01..67f3f2cf1 100755 --- a/backend/entrypoint.sh +++ b/backend/entrypoint.sh @@ -1,3 +1,4 @@ #!/bin/sh -for name in assets alerts db ender http integrations sink storage;do nohup bin/$name | awk -v log_from="[$name]: " '{print log_from, $0}' ; done \ No newline at end of file +#for name in assets alerts db ender http integrations sink storage;do nohup bin/$name | awk -v log_from="[$name]: " '{print log_from, $0}' ; done +for name in assets alerts db ender http integrations sink storage;do { bin/$name & } done \ No newline at end of file