Fix tailing the log output in Docker entry point

This commit is contained in:
Jan Kaluza 2015-11-11 16:26:37 +01:00
parent 9d509f2b7b
commit fa0448ce33

View file

@ -1,5 +1,9 @@
#!/bin/bash
spectrum2_manager start
sleep 2
tail -f /var/log/spectrum2/*
while :
do
sleep 2
tail -f /var/log/spectrum2/*/* /var/log/spectrum2/*/*/*
done