mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 03:54:15 +00:00
8 lines
175 B
Bash
Executable file
8 lines
175 B
Bash
Executable file
#!/bin/bash
|
|
# Forwards the Nginx error.log to the Docker logs.
|
|
set -e
|
|
if [[ -e /var/log/nginx/error.log ]]; then
|
|
exec tail -F /var/log/nginx/error.log
|
|
else
|
|
exec sleep 10
|
|
fi
|