From a2671788edc3e116b5bd625b8daaa6ac81c188ec Mon Sep 17 00:00:00 2001 From: Dan Farnsworth Date: Tue, 3 Dec 2019 15:04:00 -0700 Subject: [PATCH] Make sure that systemd support also adds the -t flag so that docker logs will show output --- devlab | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/devlab b/devlab index 88f0336..2a8ae8f 100755 --- a/devlab +++ b/devlab @@ -542,7 +542,8 @@ class DockerHelper(object): '--tmpfs=/run', '--tmpfs=/run/lock', '--tmpfs=/tmp', - '--volume=/sys/fs/cgroup:/sys/fs/cgroup:ro' + '--volume=/sys/fs/cgroup:/sys/fs/cgroup:ro', + '-t' #This is needed so that 'docker logs' will show systemd output ] if mounts: for mount in mounts: