mirror of
https://github.com/whyour/qinglong.git
synced 2026-08-17 15:46:59 +08:00
fix: avoid duplicate container stdout logging
This commit is contained in:
+2
-2
@@ -10,8 +10,8 @@ module.exports = {
|
||||
listen_timeout: 5000,
|
||||
source_map_support: true,
|
||||
time: !isContainer,
|
||||
out_file: isContainer ? '/proc/1/fd/1' : undefined,
|
||||
error_file: isContainer ? '/proc/1/fd/2' : undefined,
|
||||
out_file: isContainer ? '/dev/null' : undefined,
|
||||
error_file: isContainer ? '/dev/null' : undefined,
|
||||
script: 'static/build/app.js',
|
||||
env: {
|
||||
http_proxy: '',
|
||||
|
||||
Reference in New Issue
Block a user