From aae5d68c211efec583533f0d94171e62df7558a3 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Wed, 3 Aug 2016 16:52:41 +0100 Subject: [PATCH] Added cachet.is_docker if we're running as Docker --- config/cachet.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/config/cachet.php b/config/cachet.php index b6231302..ee856e91 100644 --- a/config/cachet.php +++ b/config/cachet.php @@ -22,4 +22,15 @@ return [ 'timezone' => 'UTC', + /* + |-------------------------------------------------------------------------- + | Docker + |-------------------------------------------------------------------------- + | + | Is the installation running under a Docker container? + | + */ + + 'is_docker' => env('DOCKER', false), + ];