mirror of
https://github.com/retspen/webvirtcloud
synced 2025-07-31 12:41:08 +00:00
Dockerization
This commit is contained in:
parent
bccfbb0010
commit
6f0c3dc5ac
5 changed files with 75 additions and 0 deletions
8
conf/runit/nginx-log-forwarder
Executable file
8
conf/runit/nginx-log-forwarder
Executable file
|
|
@ -0,0 +1,8 @@
|
|||
#!/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
|
||||
Loading…
Add table
Add a link
Reference in a new issue