diff --git a/Dockerfile b/Dockerfile
index 3d87607ca1..a8127f6545 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -17,6 +17,7 @@ RUN echo deb http://www.deb-multimedia.org jessie main non-free >> /etc/apt/sour
python \
python-pillow \
cron \
+ beanstalkd \
supervisor && \
\
DEBIAN_FRONTEND=noninteractive apt-get install -q -y --force-yes\
@@ -57,10 +58,11 @@ COPY docker/server/config/php.ini /usr/local/etc/php/
COPY docker/server/config/apache2.conf /etc/apache2/apache2.conf
COPY docker/server/config/crontab /etc/crontab
-# config supervisor to run apache AND cron
+# config supervisor to run apache, cron, beanstalkd
COPY docker/server/config/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
COPY docker/server/config/supervisord/supervisord_apache.conf /etc/supervisor/conf.d/supervisord_apache.conf
COPY docker/server/config/supervisord/supervisord_cron.conf /etc/supervisor/conf.d/supervisord_cron.conf
+COPY docker/server/config/supervisord/supervisord_beanstalkd.conf /etc/supervisor/conf.d/supervisord_beanstalkd.conf
# copy script to run WPT cron scripts
COPY docker/server/scripts/wpt_cron_call.sh /scripts/wpt_cron_call.sh
diff --git a/docker/server/config/supervisord/supervisord_beanstalkd.conf b/docker/server/config/supervisord/supervisord_beanstalkd.conf
new file mode 100644
index 0000000000..957cb8eb90
--- /dev/null
+++ b/docker/server/config/supervisord/supervisord_beanstalkd.conf
@@ -0,0 +1,6 @@
+[program:beanstalk]
+command = beanstalkd -l 127.0.0.1 -p 11300
+autostart = true
+autorestart = true
+stderr_logfile = /var/log/supervisor/beanstalk_stderr.log
+stdout_logfile = /var/log/supervisor/beanstalk_stdout.log
diff --git a/www/traceroute.php b/www/traceroute.php
index f5f70e247b..5244840b91 100644
--- a/www/traceroute.php
+++ b/www/traceroute.php
@@ -112,7 +112,7 @@
Number of Tests to Run
Up to
-
+