feat(backend-docker): start all services in the background (awk cannot handle log streaming)
This commit is contained in:
parent
4edc4f84b0
commit
1d36335179
1 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
Loading…
Add table
Reference in a new issue