diff --git a/deploy/nomad_consul_docker/Dockerfile b/deploy/nomad_consul_docker/Dockerfile
index e5b1ae786d356341898e4c1c24eff61240881ed5..dd939b5966fdb8c4664399870f957c2949840fb1 100644
--- a/deploy/nomad_consul_docker/Dockerfile
+++ b/deploy/nomad_consul_docker/Dockerfile
@@ -9,14 +9,19 @@ RUN apt-get update && apt-get install -y supervisor apt-transport-https \
         software-properties-common dnsutils
 
 
-RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
+RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - && \
+    curl -fsSL https://packages.fluentbit.io/fluentbit.key | apt-key add -
 
 RUN add-apt-repository \
    "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
    $(lsb_release -cs) \
-   stable"
+   stable" && \
+   add-apt-repository \
+   "deb [arch=amd64] https://packages.fluentbit.io/ubuntu/$(lsb_release -cs) \
+   $(lsb_release -cs) \
+   main"
 
-RUN apt-get update && apt-get install -y docker-ce-cli wget unzip iproute2 vim
+RUN apt-get update && apt-get install -y docker-ce-cli wget unzip iproute2 vim td-agent-bit
 
 
 ENV CONSUL_VERSION=1.6.0
diff --git a/deploy/nomad_consul_docker/nomad.hcl.tpl b/deploy/nomad_consul_docker/nomad.hcl.tpl
index 56cf2b426c46855258eff35cfc32a2acad9bb9aa..1d67eb3f695986732be629468f657b7c75b58d39 100644
--- a/deploy/nomad_consul_docker/nomad.hcl.tpl
+++ b/deploy/nomad_consul_docker/nomad.hcl.tpl
@@ -39,6 +39,12 @@ plugin "docker" {
   }
 }
 
+plugin "raw_exec" {
+  config {
+    enabled = true
+  }
+}
+
 telemetry {
   publish_allocation_metrics = $use_telemetry
   publish_node_metrics       = $use_telemetry