mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-05-26 15:13:33 +00:00
9 lines
175 B
Bash
Executable File
9 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
|