feat(backend-docker): start all services in the background (awk cannot handle log streaming)

This commit is contained in:
Taha Yassine Kraiem 2021-07-23 21:55:03 +02:00
parent 4edc4f84b0
commit 1d36335179

View file

@ -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
#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