From e22dbdcd728386a92da381d2105847b1b2c9a075 Mon Sep 17 00:00:00 2001 From: Jonathan Rosenbaum Date: Fri, 21 Oct 2016 21:40:20 +0000 Subject: [PATCH] Adds Ubuntu 16.04 --- 16.04/Dockerfile | 9 +++++++++ 16.04/supervisord.conf | 5 +++++ 2 files changed, 14 insertions(+) create mode 100644 16.04/Dockerfile create mode 100644 16.04/supervisord.conf diff --git a/16.04/Dockerfile b/16.04/Dockerfile new file mode 100644 index 0000000..1418518 --- /dev/null +++ b/16.04/Dockerfile @@ -0,0 +1,9 @@ +FROM ubuntu:16.04 +MAINTAINER Jonathan Rosenbaum + +# Not all applications use mysql, but nevertheless. +RUN export DEBIAN_FRONTEND="noninteractive"; echo "mysql-server-5.7 mysql-server/root_password password" | debconf-set-selections; echo "mysql-server-5.7 mysql-server/root_password_again password" | debconf-set-selections; apt-get update && apt-get -y install mysql-server git supervisor ruby make libmysqlclient-dev ruby-dev + +COPY supervisord.conf /etc/supervisor/supervisord.conf + +#docker run -dt --name=test-ubuntu ubuntu:16.04 diff --git a/16.04/supervisord.conf b/16.04/supervisord.conf new file mode 100644 index 0000000..a951685 --- /dev/null +++ b/16.04/supervisord.conf @@ -0,0 +1,5 @@ +[supervisord] +nodaemon=true + +[include] +files = /etc/supervisor/conf.d/*.conf